summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/k1003.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/k1003.cpp')
-rw-r--r--src/mame/drivers/k1003.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/k1003.cpp b/src/mame/drivers/k1003.cpp
index cee0837a538..2ae7770bc22 100644
--- a/src/mame/drivers/k1003.cpp
+++ b/src/mame/drivers/k1003.cpp
@@ -128,12 +128,12 @@ WRITE8_MEMBER( k1003_state::disp_w )
void k1003_state::k1003_io(address_map &map)
{
map.unmap_value_high();
- map(0x00, 0x00).r(this, FUNC(k1003_state::key_r));
- map(0x02, 0x02).r(this, FUNC(k1003_state::port2_r));
+ map(0x00, 0x00).r(FUNC(k1003_state::key_r));
+ map(0x02, 0x02).r(FUNC(k1003_state::port2_r));
- map(0x08, 0x08).w(this, FUNC(k1003_state::disp_w));
- map(0x09, 0x09).w(this, FUNC(k1003_state::disp_2_w));
- map(0x10, 0x10).w(this, FUNC(k1003_state::disp_1_w));
+ map(0x08, 0x08).w(FUNC(k1003_state::disp_w));
+ map(0x09, 0x09).w(FUNC(k1003_state::disp_2_w));
+ map(0x10, 0x10).w(FUNC(k1003_state::disp_1_w));
}
/* Input ports */