summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/m24_z8000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/m24_z8000.h')
-rw-r--r--src/mame/machine/m24_z8000.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/m24_z8000.h b/src/mame/machine/m24_z8000.h
index a7dea290eb1..e6d7283d82f 100644
--- a/src/mame/machine/m24_z8000.h
+++ b/src/mame/machine/m24_z8000.h
@@ -24,10 +24,10 @@ public:
void dmem_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
uint16_t i86_io_r(offs_t offset, uint16_t mem_mask = ~0);
void i86_io_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
- DECLARE_WRITE8_MEMBER(irqctl_w);
- DECLARE_WRITE8_MEMBER(serctl_w);
- DECLARE_READ8_MEMBER(handshake_r);
- DECLARE_WRITE8_MEMBER(handshake_w);
+ void irqctl_w(uint8_t data);
+ void serctl_w(uint8_t data);
+ uint8_t handshake_r();
+ void handshake_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER(halt_w) { m_z8000->set_input_line(INPUT_LINE_HALT, state); }
DECLARE_WRITE_LINE_MEMBER(int_w) { m_z8000->set_input_line(z8001_device::VI_LINE, state); }