diff options
author | 2013-09-29 15:30:43 +0000 | |
---|---|---|
committer | 2013-09-29 15:30:43 +0000 | |
commit | d1349077e6a46d964fe726f73aa35f5856f50a70 (patch) | |
tree | 493880d8502dc9f416bbe957e5a3c794206d9d0a /src/mess/machine/pc_keyboards.c | |
parent | 8cf2c2c122cc531abbb4df879131ad7666b5fe87 (diff) |
(MESS) ec1841 updates: [shattered]
- Emulated the original keyboard
- DIP switches added
- Improved memory mapping
Diffstat (limited to 'src/mess/machine/pc_keyboards.c')
-rw-r--r-- | src/mess/machine/pc_keyboards.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mess/machine/pc_keyboards.c b/src/mess/machine/pc_keyboards.c index 5f31c7fc86e..18fac5aa1d0 100644 --- a/src/mess/machine/pc_keyboards.c +++ b/src/mess/machine/pc_keyboards.c @@ -1,6 +1,7 @@ #include "emu.h" #include "machine/pc_keyboards.h" +#include "machine/kb_ec1841.h" #include "machine/kb_keytro.h" #include "machine/kb_msnat.h" #include "machine/kb_pc83.h" @@ -11,6 +12,7 @@ SLOT_INTERFACE_START(pc_xt_keyboards) SLOT_INTERFACE(STR_KBD_KEYTRONIC_PC3270, PC_KBD_KEYTRONIC_PC3270) SLOT_INTERFACE(STR_KBD_IBM_PC_83, PC_KBD_IBM_PC_83) SLOT_INTERFACE(STR_KBD_IBM_PC_XT_83, PC_KBD_IBM_PC_XT_83) + SLOT_INTERFACE(STR_KBD_EC_1841, PC_KBD_EC_1841) SLOT_INTERFACE_END |