summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/lola8a.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/lola8a.cpp')
-rw-r--r--src/mame/drivers/lola8a.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/lola8a.cpp b/src/mame/drivers/lola8a.cpp
index e7058f152d9..912023d6ce2 100644
--- a/src/mame/drivers/lola8a.cpp
+++ b/src/mame/drivers/lola8a.cpp
@@ -84,7 +84,7 @@ private:
DECLARE_WRITE_LINE_MEMBER(crtc_vsync);
DECLARE_READ_LINE_MEMBER(cass_r);
DECLARE_WRITE_LINE_MEMBER(cass_w);
- DECLARE_READ8_MEMBER(keyboard_r);
+ uint8_t keyboard_r();
MC6845_UPDATE_ROW(crtc_update_row);
void lola8a_io(address_map &map);
@@ -272,7 +272,7 @@ WRITE_LINE_MEMBER( lola8a_state::cass_w )
m_cass->output(state ? -1.0 : +1.0);
}
-READ8_MEMBER(lola8a_state::keyboard_r)
+uint8_t lola8a_state::keyboard_r()
{
u8 data = 0xff, kbrow = m_portb & 15;