summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/adamnet/kb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/adamnet/kb.cpp')
-rw-r--r--src/devices/bus/adamnet/kb.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/adamnet/kb.cpp b/src/devices/bus/adamnet/kb.cpp
index e5e702156eb..34dc6ea2ff5 100644
--- a/src/devices/bus/adamnet/kb.cpp
+++ b/src/devices/bus/adamnet/kb.cpp
@@ -64,10 +64,10 @@ void adam_keyboard_device::adam_kb_mem(address_map &map)
void adam_keyboard_device::adam_kb_io(address_map &map)
{
- map(M6801_PORT1, M6801_PORT1).r(this, FUNC(adam_keyboard_device::p1_r));
- map(M6801_PORT2, M6801_PORT2).rw(this, FUNC(adam_keyboard_device::p2_r), FUNC(adam_keyboard_device::p2_w));
- map(M6801_PORT3, M6801_PORT3).rw(this, FUNC(adam_keyboard_device::p3_r), FUNC(adam_keyboard_device::p3_w));
- map(M6801_PORT4, M6801_PORT4).rw(this, FUNC(adam_keyboard_device::p4_r), FUNC(adam_keyboard_device::p4_w));
+ map(M6801_PORT1, M6801_PORT1).r(FUNC(adam_keyboard_device::p1_r));
+ map(M6801_PORT2, M6801_PORT2).rw(FUNC(adam_keyboard_device::p2_r), FUNC(adam_keyboard_device::p2_w));
+ map(M6801_PORT3, M6801_PORT3).rw(FUNC(adam_keyboard_device::p3_r), FUNC(adam_keyboard_device::p3_w));
+ map(M6801_PORT4, M6801_PORT4).rw(FUNC(adam_keyboard_device::p4_r), FUNC(adam_keyboard_device::p4_w));
}