diff options
author | 2020-05-28 18:10:20 +0200 | |
---|---|---|
committer | 2020-05-28 18:10:20 +0200 | |
commit | d4c772bcc7263dd2697a7977d196a96ad2d067a3 (patch) | |
tree | 3fa4d24ee8250f44ec9f7a0cc9df94bf8bd3c5cb /src/mame/drivers/instantm.cpp | |
parent | c7d667d41adaa9627a3350e7f984fe7fc431f081 (diff) |
drivers starting with i, j, k, l and m: more macro removal (nw)
Diffstat (limited to 'src/mame/drivers/instantm.cpp')
-rw-r--r-- | src/mame/drivers/instantm.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/instantm.cpp b/src/mame/drivers/instantm.cpp index 6cb6101263d..582c836b9e2 100644 --- a/src/mame/drivers/instantm.cpp +++ b/src/mame/drivers/instantm.cpp @@ -42,8 +42,8 @@ public: void instantm(machine_config &config); private: - DECLARE_READ8_MEMBER(port01_r); - DECLARE_WRITE8_MEMBER(port01_w); + u8 port01_r(); + void port01_w(u8 data); DECLARE_WRITE_LINE_MEMBER(clock_w); void main_map(address_map &map); @@ -58,13 +58,13 @@ private: }; // return instruction from main cpu -READ8_MEMBER( instantm_state::port01_r ) +u8 instantm_state::port01_r() { return m_port01; } // tell maincpu the speech is done -WRITE8_MEMBER( instantm_state::port01_w ) +void instantm_state::port01_w(u8 data) { // bump to next bit of speech for now if ((m_port01 & 15) < 15) |