diff options
author | 2013-06-30 08:51:53 +0000 | |
---|---|---|
committer | 2013-06-30 08:51:53 +0000 | |
commit | 84b0a81456f2ce6fa4d28fd00560a2cc677930a1 (patch) | |
tree | f9105bafa8da7ce5cc694519c8f9e282327e2595 /src/mess/drivers/at.c | |
parent | 1d8e3862e9560f5ac17c518a4f5aefb4320c360b (diff) |
(MESS) ibm5170: Emulated the IBM Model F PC/AT 84-key keyboard. [Curt Coder, John Elliott]
Diffstat (limited to 'src/mess/drivers/at.c')
-rw-r--r-- | src/mess/drivers/at.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/at.c b/src/mess/drivers/at.c index 737bf84300f..3cccd9bee7f 100644 --- a/src/mess/drivers/at.c +++ b/src/mess/drivers/at.c @@ -299,7 +299,7 @@ static MACHINE_CONFIG_FRAGMENT( at_motherboard ) MCFG_AT_KEYBOARD_CONTROLLER_ADD("keybc", XTAL_12MHz, keyboard_controller_intf) MCFG_PC_KBDC_ADD("pc_kbdc", pc_kbdc_intf) - MCFG_PC_KBDC_SLOT_ADD("pc_kbdc", "kbd", pc_at_keyboards, STR_KBD_MICROSOFT_NATURAL) + MCFG_PC_KBDC_SLOT_ADD("pc_kbdc", "kbd", pc_at_keyboards, STR_KBD_IBM_PC_AT_84) MCFG_MC146818_IRQ_ADD( "rtc", MC146818_STANDARD, WRITELINE(at_state, at_mc146818_irq)) |