diff options
author | 2012-08-21 10:41:19 +0000 | |
---|---|---|
committer | 2012-08-21 10:41:19 +0000 | |
commit | 7285b359d259b2ae0fdf85096571c386ec8c991a (patch) | |
tree | a027aff57f1a255f9ec6cfd3b68cabe4b6683998 /src/mess/machine/pc_keyboards.c | |
parent | 67c425e90757876a6716b7867df30c0149912e74 (diff) |
Merge of MESS sources (no whatsnew)
Diffstat (limited to 'src/mess/machine/pc_keyboards.c')
-rw-r--r-- | src/mess/machine/pc_keyboards.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/mess/machine/pc_keyboards.c b/src/mess/machine/pc_keyboards.c new file mode 100644 index 00000000000..5094744acb5 --- /dev/null +++ b/src/mess/machine/pc_keyboards.c @@ -0,0 +1,16 @@ + +#include "emu.h" +#include "machine/pc_keyboards.h" +#include "machine/kb_keytro.h" +#include "machine/kb_msnat.h" + +SLOT_INTERFACE_START(pc_xt_keyboards) + SLOT_INTERFACE(STR_KBD_KEYTRONIC_PC3270, PC_KBD_KEYTRONIC_PC3270) +SLOT_INTERFACE_END + + +SLOT_INTERFACE_START(pc_at_keyboards) + SLOT_INTERFACE(STR_KBD_KEYTRONIC_PC3270, PC_KBD_KEYTRONIC_PC3270_AT) + SLOT_INTERFACE(STR_KBD_MICROSOFT_NATURAL, PC_KBD_MICROSOFT_NATURAL) +SLOT_INTERFACE_END + |