summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/lcmate2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/lcmate2.cpp')
-rw-r--r--src/mame/drivers/lcmate2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/lcmate2.cpp b/src/mame/drivers/lcmate2.cpp
index ccec345cf69..f873c095da1 100644
--- a/src/mame/drivers/lcmate2.cpp
+++ b/src/mame/drivers/lcmate2.cpp
@@ -107,15 +107,15 @@ void lcmate2_state::lcmate2_io(address_map &map)
{
map.unmap_value_high();
map(0x0000, 0x000f).rw(m_rtc, FUNC(rp5c15_device::read), FUNC(rp5c15_device::write));
- map(0x1000, 0x1000).w(this, FUNC(lcmate2_state::speaker_w));
- map(0x1fff, 0x1fff).w(this, FUNC(lcmate2_state::bankswitch_w));
+ map(0x1000, 0x1000).w(FUNC(lcmate2_state::speaker_w));
+ map(0x1fff, 0x1fff).w(FUNC(lcmate2_state::bankswitch_w));
map(0x3000, 0x3000).w(m_lcdc, FUNC(hd44780_device::control_write));
map(0x3001, 0x3001).w(m_lcdc, FUNC(hd44780_device::data_write));
map(0x3002, 0x3002).r(m_lcdc, FUNC(hd44780_device::control_read));
map(0x3003, 0x3003).r(m_lcdc, FUNC(hd44780_device::data_read));
- map(0x5000, 0x50ff).r(this, FUNC(lcmate2_state::key_r));
+ map(0x5000, 0x50ff).r(FUNC(lcmate2_state::key_r));
}
/* Input ports */