From 2ba21b3b86fcbe82ab5abc68439f84cd77f55a4c Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Wed, 29 Sep 2021 05:03:27 -0400 Subject: [PATCH] support FDC_INTERNAL on 486-VIP-IO2 --- src/machine/m_at_386dx_486.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/machine/m_at_386dx_486.c b/src/machine/m_at_386dx_486.c index 03ba605f3..f5c7107f4 100644 --- a/src/machine/m_at_386dx_486.c +++ b/src/machine/m_at_386dx_486.c @@ -1105,6 +1105,9 @@ machine_at_486vipio2_init(const machine_t *model) device_add(&keyboard_ps2_ami_pci_device); device_add(&sst_flash_29ee010_device); + if (fdc_type == FDC_INTERNAL) + device_add(&fdc_at_device); + return ret; }