From 8616e1e6e373d55558004899dc84ecb77df01611 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 18 Jul 2021 20:37:59 +0200 Subject: [PATCH] The GW-286CT-GEAR now has a non-AMI keyboard controller (it's supposed to have C&T KBC firmware), fixes MS-DOS booting. --- src/machine/m_at_286_386sx.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/machine/m_at_286_386sx.c b/src/machine/m_at_286_386sx.c index 3d691c159..10de113f6 100644 --- a/src/machine/m_at_286_386sx.c +++ b/src/machine/m_at_286_386sx.c @@ -323,7 +323,10 @@ machine_at_gw286ct_init(const machine_t *model) device_add(&f82c710_device); - machine_at_scat_init(model, 1); + machine_at_common_init(model); + device_add(&keyboard_at_device); + + device_add(&scat_4_device); device_add(&ide_isa_device);