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/modellot.cpp | |
parent | c7d667d41adaa9627a3350e7f984fe7fc431f081 (diff) |
drivers starting with i, j, k, l and m: more macro removal (nw)
Diffstat (limited to 'src/mame/drivers/modellot.cpp')
-rw-r--r-- | src/mame/drivers/modellot.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/modellot.cpp b/src/mame/drivers/modellot.cpp index a8ba92808fa..762468eecdc 100644 --- a/src/mame/drivers/modellot.cpp +++ b/src/mame/drivers/modellot.cpp @@ -61,8 +61,8 @@ public: void modellot(machine_config &config); private: - DECLARE_READ8_MEMBER(port77_r); - DECLARE_READ8_MEMBER(portff_r); + uint8_t port77_r(); + uint8_t portff_r(); void kbd_put(u8 data); uint32_t screen_update_modellot(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); @@ -97,12 +97,12 @@ void modellot_state::io_map(address_map &map) static INPUT_PORTS_START( modellot ) INPUT_PORTS_END -READ8_MEMBER( modellot_state::port77_r) +uint8_t modellot_state::port77_r() { return 4; } -READ8_MEMBER( modellot_state::portff_r) +uint8_t modellot_state::portff_r() { uint8_t data = (m_term_data) ? m_term_data ^ 0x7f : 0xff; m_term_data = 0; |