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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/adamnet/kb.cpp b/src/devices/bus/adamnet/kb.cpp
index ea17493f5a9..37ed72669e1 100644
--- a/src/devices/bus/adamnet/kb.cpp
+++ b/src/devices/bus/adamnet/kb.cpp
@@ -52,7 +52,7 @@ const tiny_rom_entry *adam_keyboard_device::device_rom_region() const
void adam_keyboard_device::adam_kb_mem(address_map &map)
{
- map(0x0000, 0x001f).rw(M6801_TAG, FUNC(m6801_cpu_device::m6801_io_r), FUNC(m6801_cpu_device::m6801_io_w));
+ map(0x0000, 0x001f).m(M6801_TAG, FUNC(m6801_cpu_device::m6801_io));
map(0x0080, 0x00ff).ram();
map(0xf800, 0xffff).rom().region(M6801_TAG, 0);
}