summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/pc16552d.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2007-12-17 15:19:59 +0000
committer Aaron Giles <aaron@aarongiles.com>2007-12-17 15:19:59 +0000
commit7b77f1218624ea26dbb2efd85a19f795f5d4e02e (patch)
tree19209304095572b4fd61c2a2d6a5aa75c4e471ad /src/emu/machine/pc16552d.h
parent3da7f476068b3ffef713218ba2fc1bd5030f2c38 (diff)
Initial checkin of MAME 0.121.mame0121
Diffstat (limited to 'src/emu/machine/pc16552d.h')
-rw-r--r--src/emu/machine/pc16552d.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/emu/machine/pc16552d.h b/src/emu/machine/pc16552d.h
new file mode 100644
index 00000000000..1dd30017a7f
--- /dev/null
+++ b/src/emu/machine/pc16552d.h
@@ -0,0 +1,12 @@
+#ifndef PC16552D_H
+#define PC16552D_H
+
+void pc16552d_init(int chip, int frequency, void (* irq_handler)(int channel, int value));
+void pc16552d_rx_data(int chip, int channel, UINT8 data);
+
+READ8_HANDLER(pc16552d_0_r);
+WRITE8_HANDLER(pc16552d_0_w);
+READ8_HANDLER(pc16552d_1_r);
+WRITE8_HANDLER(pc16552d_1_w);
+
+#endif