From 06b873241204c05b3ca18663884274d0a242981e Mon Sep 17 00:00:00 2001 From: tiseno100 <58827426+tiseno100@users.noreply.github.com> Date: Fri, 20 Dec 2019 15:29:32 +0200 Subject: [PATCH] Revert the Unknown Quadtel Headland --- src/machine/m_at_286_386sx.c | 6 +++--- src/machine/machine.h | 2 +- src/machine/machine_table.c | 2 +- src/machine/machine_table_new.c | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/machine/m_at_286_386sx.c b/src/machine/m_at_286_386sx.c index 5704291ef..07b1aa125 100644 --- a/src/machine/m_at_286_386sx.c +++ b/src/machine/m_at_286_386sx.c @@ -142,12 +142,12 @@ machine_at_headlandpho_init(const machine_t *model) } int -machine_at_g212hs_init(const machine_t *model) +machine_at_headlandquadtel_init(const machine_t *model) { int ret; - ret = bios_load_interleaved(L"roms/machines/g212hs/BIOS-LO.BIN", - L"roms/machines/g212hs/BIOS-HI.BIN", + ret = bios_load_interleaved(L"roms/machines/headlandquadtel/Amiht-l.BIN", + L"roms/machines/headlandquadtel/AMIHT-H.BIN", 0x000f0000, 65536, 0); if (bios_only || !ret) diff --git a/src/machine/machine.h b/src/machine/machine.h index 2ca44003e..852c52714 100644 --- a/src/machine/machine.h +++ b/src/machine/machine.h @@ -180,7 +180,7 @@ extern int machine_at_headland_init(const machine_t *); extern int machine_at_tg286m_init(const machine_t *); extern int machine_at_ama932j_init(const machine_t *); extern int machine_at_headlandpho_init(const machine_t *); -extern int machine_at_g212hs_init(const machine_t *); +extern int machine_at_headlandquadtel_init(const machine_t *); extern int machine_at_neat_init(const machine_t *); extern int machine_at_neat_ami_init(const machine_t *); diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index 22b73843a..20d17a6c0 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -110,7 +110,7 @@ const machine_t machines[] = { { "[286 ISA] Trigem 286M", "tg286m", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT | MACHINE_HDC, 512, 8192, 128, 127, machine_at_tg286m_init, NULL }, { "[286 ISA] Unknown Phoenix Headland", "headlandpho", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 512, 8192, 128, 127, machine_at_headlandpho_init, NULL }, - { "[286 ISA] G2 12HS", "g212hs", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 512, 8192, 128, 127, machine_at_g212hs_init, NULL }, + { "[286 ISA] Unknown Quadtel Headland", "headlandquadtel", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 512, 8192, 128, 127, machine_at_headlandquadtel_init, NULL }, { "[286 ISA] Samsung Deskmaster 286", "deskmaster286", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 512,16384, 128, 127, machine_at_deskmaster286_init, NULL }, { "[286 MCA] IBM PS/2 model 50", "ibmps2_m50", {{"", cpus_ps2_m30_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_MCA | MACHINE_AT | MACHINE_PS2 | MACHINE_VIDEO, 1, 10, 1, 63, machine_ps2_model_50_init, NULL }, diff --git a/src/machine/machine_table_new.c b/src/machine/machine_table_new.c index 0068d2b59..b703ca4c1 100644 --- a/src/machine/machine_table_new.c +++ b/src/machine/machine_table_new.c @@ -97,7 +97,7 @@ const machine_t machines[] = { { "[286 ISA] Trigem 286M", "tg286m", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT | MACHINE_HDC, 512, 8192, 128, 127, machine_at_tg286m_init, NULL }, { "[286 ISA] Unknown Phoenix Headland", "headlandpho", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 512, 8192, 128, 127, machine_at_headlandpho_init, NULL }, - { "[286 ISA] G2 12HS", "g212hs", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 512, 8192, 128, 127, machine_at_g212hs_init, NULL }, + { "[286 ISA] Unknown Quadtel Headland", "headlandquadtel", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 512, 8192, 128, 127, machine_at_headlandquadtel_init, NULL }, { "[286 ISA] Samsung Deskmaster 286", "deskmaster286", {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 512,16384, 128, 127, machine_at_deskmaster286_init, NULL }, { "[286 MCA] IBM PS/2 model 50", "ibmps2_m50", {{"", cpus_ps2_m30_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_MCA | MACHINE_AT | MACHINE_PS2 | MACHINE_VIDEO, 1, 10, 1, 63, machine_ps2_model_50_init, NULL },