summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/m20_8086.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/m20_8086.h')
-rw-r--r--src/mame/machine/m20_8086.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/m20_8086.h b/src/mame/machine/m20_8086.h
index c0ec8c7588a..ae083e47d62 100644
--- a/src/mame/machine/m20_8086.h
+++ b/src/mame/machine/m20_8086.h
@@ -21,11 +21,11 @@ public:
m20_8086_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ16_MEMBER(z8000_io_r);
- DECLARE_WRITE16_MEMBER(z8000_io_w);
+ uint16_t z8000_io_r(offs_t offset, uint16_t mem_mask = ~0);
+ void z8000_io_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
DECLARE_WRITE_LINE_MEMBER(vi_w);
DECLARE_WRITE_LINE_MEMBER(nvi_w);
- DECLARE_WRITE16_MEMBER(handshake_w);
+ void handshake_w(offs_t offset, uint16_t data);
void halt() { m_8086->set_input_line(INPUT_LINE_HALT, ASSERT_LINE); }
bool halted() const { return m_8086_halt; }