diff --git a/src/machine/m_at_286_386sx.c b/src/machine/m_at_286_386sx.c index 1e7ec471a..3d691c159 100644 --- a/src/machine/m_at_286_386sx.c +++ b/src/machine/m_at_286_386sx.c @@ -249,9 +249,6 @@ machine_at_scat_init(const machine_t *model, int is_v4) machine_at_common_init(model); device_add(&keyboard_at_ami_device); - if (fdc_type == FDC_INTERNAL) - device_add(&fdc_at_device); - if (is_v4) device_add(&scat_4_device); else @@ -286,6 +283,9 @@ machine_at_award286_init(const machine_t *model) machine_at_scat_init(model, 0); + if (fdc_type == FDC_INTERNAL) + device_add(&fdc_at_device); + return ret; } @@ -302,6 +302,9 @@ machine_at_gdc212m_init(const machine_t *model) machine_at_scat_init(model, 0); + if (fdc_type == FDC_INTERNAL) + device_add(&fdc_at_device); + device_add(&ide_isa_device); return ret; @@ -322,6 +325,8 @@ machine_at_gw286ct_init(const machine_t *model) machine_at_scat_init(model, 1); + device_add(&ide_isa_device); + return ret; } @@ -339,6 +344,9 @@ machine_at_super286tr_init(const machine_t *model) machine_at_scat_init(model, 0); + if (fdc_type == FDC_INTERNAL) + device_add(&fdc_at_device); + return ret; } @@ -356,6 +364,9 @@ machine_at_spc4200p_init(const machine_t *model) machine_at_scat_init(model, 0); + if (fdc_type == FDC_INTERNAL) + device_add(&fdc_at_device); + return ret; } @@ -374,6 +385,9 @@ machine_at_spc4216p_init(const machine_t *model) machine_at_scat_init(model, 1); + if (fdc_type == FDC_INTERNAL) + device_add(&fdc_at_device); + return ret; } @@ -399,6 +413,9 @@ machine_at_spc4620p_init(const machine_t *model) machine_at_scat_init(model, 1); + if (fdc_type == FDC_INTERNAL) + device_add(&fdc_at_device); + if (gfxcard == VID_INTERNAL) device_add(&ati28800k_spc4620p_device); @@ -436,6 +453,9 @@ machine_at_deskmaster286_init(const machine_t *model) machine_at_scat_init(model, 0); + if (fdc_type == FDC_INTERNAL) + device_add(&fdc_at_device); + return ret; } diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index 39dbe0539..a952c2b4e 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -143,7 +143,7 @@ const machine_t machines[] = { { "[NEAT] NCR 3302", "3302", MACHINE_TYPE_286, CPU_PKG_286, 0, 0, 0, 0, 0, 0, 0, MACHINE_AT | MACHINE_VIDEO, 512, 16384, 128, 127, machine_at_3302_init, NULL }, { "[NEAT] Phoenix 286 clone", "px286", MACHINE_TYPE_286, CPU_PKG_286, 0, 0, 0, 0, 0, 0, 0, MACHINE_AT, 512, 16384, 128, 127, machine_at_px286_init, NULL }, { "[SCAT] Award 286 clone", "award286", MACHINE_TYPE_286, CPU_PKG_286, 0, 0, 0, 0, 0, 0, 0, MACHINE_AT, 512, 16384, 128, 127, machine_at_award286_init, NULL }, - { "[SCAT] GW-286CT GEAR", "gw286ct", MACHINE_TYPE_286, CPU_PKG_286, 0, 0, 0, 0, 0, 0, 0, MACHINE_AT, 512, 16384, 128, 127, machine_at_gw286ct_init, NULL }, + { "[SCAT] GW-286CT GEAR", "gw286ct", MACHINE_TYPE_286, CPU_PKG_286, 0, 0, 0, 0, 0, 0, 0, MACHINE_AT | MACHINE_IDE, 512, 16384, 128, 127, machine_at_gw286ct_init, NULL }, { "[SCAT] Goldstar GDC-212M", "gdc212m", MACHINE_TYPE_286, CPU_PKG_286, 0, 0, 0, 0, 0, 0, 0, MACHINE_AT | MACHINE_IDE | MACHINE_BUS_PS2, 512, 4096, 512, 127, machine_at_gdc212m_init, NULL }, { "[SCAT] Hyundai Super-286TR", "super286tr", MACHINE_TYPE_286, CPU_PKG_286, 0, 0, 0, 0, 0, 0, 0, MACHINE_AT, 512, 16384, 128, 127, machine_at_super286tr_init, NULL }, { "[SCAT] Samsung SPC-4200P", "spc4200p", MACHINE_TYPE_286, CPU_PKG_286, 0, 0, 0, 0, 0, 0, 0, MACHINE_AT | MACHINE_BUS_PS2, 512, 2048, 128, 127, machine_at_spc4200p_init, NULL },