summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/adamnet/printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/adamnet/printer.cpp')
-rw-r--r--src/devices/bus/adamnet/printer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/adamnet/printer.cpp b/src/devices/bus/adamnet/printer.cpp
index e23fd924265..08d5f23e7d3 100644
--- a/src/devices/bus/adamnet/printer.cpp
+++ b/src/devices/bus/adamnet/printer.cpp
@@ -64,10 +64,10 @@ void adam_printer_device::adam_prn_mem(address_map &map)
void adam_printer_device::adam_prn_io(address_map &map)
{
- map(M6801_PORT1, M6801_PORT1).w(this, FUNC(adam_printer_device::p1_w));
- map(M6801_PORT2, M6801_PORT2).rw(this, FUNC(adam_printer_device::p2_r), FUNC(adam_printer_device::p2_w));
- map(M6801_PORT3, M6801_PORT3).r(this, FUNC(adam_printer_device::p3_r));
- map(M6801_PORT4, M6801_PORT4).rw(this, FUNC(adam_printer_device::p4_r), FUNC(adam_printer_device::p4_w));
+ map(M6801_PORT1, M6801_PORT1).w(FUNC(adam_printer_device::p1_w));
+ map(M6801_PORT2, M6801_PORT2).rw(FUNC(adam_printer_device::p2_r), FUNC(adam_printer_device::p2_w));
+ map(M6801_PORT3, M6801_PORT3).r(FUNC(adam_printer_device::p3_r));
+ map(M6801_PORT4, M6801_PORT4).rw(FUNC(adam_printer_device::p4_r), FUNC(adam_printer_device::p4_w));
}