summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pecom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pecom.cpp')
-rw-r--r--src/mame/drivers/pecom.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/pecom.cpp b/src/mame/drivers/pecom.cpp
index 98e0a0e0e03..2e60b208dbf 100644
--- a/src/mame/drivers/pecom.cpp
+++ b/src/mame/drivers/pecom.cpp
@@ -29,9 +29,9 @@ void pecom_state::pecom64_mem(address_map &map)
void pecom_state::pecom64_io(address_map &map)
{
- map(0x01, 0x01).w(this, FUNC(pecom_state::pecom_bank_w));
- map(0x03, 0x03).r(this, FUNC(pecom_state::pecom_keyboard_r));
- map(0x03, 0x07).w(this, FUNC(pecom_state::pecom_cdp1869_w));
+ map(0x01, 0x01).w(FUNC(pecom_state::pecom_bank_w));
+ map(0x03, 0x03).r(FUNC(pecom_state::pecom_keyboard_r));
+ map(0x03, 0x07).w(FUNC(pecom_state::pecom_cdp1869_w));
}
/* Input ports */