From 4b92bb62cbc97bc342b24060e7a6e63223f92aa6 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 17 Feb 2025 00:41:34 +0100 Subject: [PATCH] Commodore SL386SX-16: Remove internal IDE controller, sicne the real board has none. --- src/machine/m_at_286_386sx.c | 2 +- src/machine/machine_table.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/machine/m_at_286_386sx.c b/src/machine/m_at_286_386sx.c index 362f035e0..24cb88f09 100644 --- a/src/machine/m_at_286_386sx.c +++ b/src/machine/m_at_286_386sx.c @@ -626,7 +626,7 @@ machine_at_cmdsl386sx16_init(const machine_t *model) if (bios_only || !ret) return ret; - machine_at_common_ide_init(model); + machine_at_common_init(model); device_add(&keyboard_ps2_device); diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index 5010f984c..cb6bc964e 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -4688,7 +4688,7 @@ const machine_t machines[] = { .max_multi = 0 }, .bus_flags = MACHINE_PS2, - .flags = MACHINE_IDE, + .flags = MACHINE_FLAGS_NONE, .ram = { .min = 1024, .max = 8192,