From e6269019f4b5c1f562e10925f5d0a56252e7f28b Mon Sep 17 00:00:00 2001 From: win2kgamer <47463859+win2kgamer@users.noreply.github.com> Date: Fri, 29 Aug 2025 21:06:54 -0500 Subject: [PATCH] Add missing onboard IDE to the Commodore SL386SX-16 --- src/machine/m_at_386sx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/machine/m_at_386sx.c b/src/machine/m_at_386sx.c index e225ba0e7..f48b8977a 100644 --- a/src/machine/m_at_386sx.c +++ b/src/machine/m_at_386sx.c @@ -408,6 +408,7 @@ machine_at_cmdsl386sx16_init(const machine_t *model) device_add(&fdc_at_device); device_add(&neat_device); + device_add(&ide_isa_device); /* Two serial ports - on the real hardware SL386SX-16, they are on the single UMC UM82C452. */ device_add_inst(&ns16450_device, 1); device_add_inst(&ns16450_device, 2);