summaryrefslogtreecommitdiffstatshomepage
path: root/trunk/src/emu/machine/pcshare.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/emu/machine/pcshare.h')
-rw-r--r--trunk/src/emu/machine/pcshare.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/trunk/src/emu/machine/pcshare.h b/trunk/src/emu/machine/pcshare.h
new file mode 100644
index 00000000000..a746f7a1982
--- /dev/null
+++ b/trunk/src/emu/machine/pcshare.h
@@ -0,0 +1,14 @@
+/* flags for init_pc_common */
+#define PCCOMMON_KEYBOARD_PC 0
+#define PCCOMMON_KEYBOARD_AT 1
+
+void init_pc_common(running_machine &machine, UINT32 flags, void (*set_keyb_int_func)(running_machine &, int));
+
+void pc_keyboard(void);
+UINT8 pc_keyb_read(void);
+void pc_keyb_set_clock(int on);
+void pc_keyb_clear(void);
+
+extern IRQ_CALLBACK(pcat_irq_callback);
+ADDRESS_MAP_EXTERN(pcat32_io_common, 32);
+MACHINE_CONFIG_EXTERN(pcat_common);