From 1230b0c6a7bfefff376554a1d33c5a84f53e2989 Mon Sep 17 00:00:00 2001 From: amdk6 <38372778+SauceJustSauce@users.noreply.github.com> Date: Sat, 8 Aug 2020 18:59:23 +0300 Subject: [PATCH 1/2] Gave the IBM PC 330 the OPTi 611 HDC --- src/machine/m_at_386dx_486.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/machine/m_at_386dx_486.c b/src/machine/m_at_386dx_486.c index 26a49468d..03a5e6e36 100644 --- a/src/machine/m_at_386dx_486.c +++ b/src/machine/m_at_386dx_486.c @@ -363,11 +363,12 @@ machine_at_pc330_6571_init(const machine_t *model) // doesn't like every CPU oth if (bios_only || !ret) return ret; - machine_at_common_ide_init(model); + machine_at_common_init(model); device_add(&opti802g_device); device_add(&keyboard_ps2_device); device_add(&fdc37c665_device); + device_add(&ide_opti611_vlb_device); device_add(&intel_flash_bxt_device); return ret; From fa424c13aa5d16550127147dfc8c248111bc540d Mon Sep 17 00:00:00 2001 From: amdk6 <38372778+SauceJustSauce@users.noreply.github.com> Date: Sat, 8 Aug 2020 19:07:02 +0300 Subject: [PATCH 2/2] Corrected the comment on the PC 330 --- 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 03a5e6e36..d30244343 100644 --- a/src/machine/m_at_386dx_486.c +++ b/src/machine/m_at_386dx_486.c @@ -353,7 +353,7 @@ machine_at_403tg_init(const machine_t *model) } int -machine_at_pc330_6571_init(const machine_t *model) // doesn't like every CPU other than the Intel OverDrive, hangs without a PS/2 mouse +machine_at_pc330_6571_init(const machine_t *model) // doesn't like every CPU other than the iDX4 and the Intel OverDrive, hangs without a PS/2 mouse { int ret;