From da873eab128b67ac972b7e5514a69c637432ada2 Mon Sep 17 00:00:00 2001 From: tiseno100 <58827426+tiseno100@users.noreply.github.com> Date: Sat, 20 Jun 2020 15:45:23 +0300 Subject: [PATCH] The A1G doesn't have VLB capabilities Changed the 2CH IDE controller to the ISA variation as the A1G doesn't have any VLB capabilities at all. --- src/machine/m_at_386dx_486.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/m_at_386dx_486.c b/src/machine/m_at_386dx_486.c index 970efe411..efa3b34e3 100644 --- a/src/machine/m_at_386dx_486.c +++ b/src/machine/m_at_386dx_486.c @@ -148,7 +148,7 @@ machine_at_acera1g_init(const machine_t *model) device_add(&ali1429_device); device_add(&keyboard_ps2_acer_pci_device); device_add(&fdc_at_device); - device_add(&ide_vlb_2ch_device); + device_add(&ide_isa_2ch_device); return ret; }