summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hp2620.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hp2620.cpp')
-rw-r--r--src/mame/drivers/hp2620.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/hp2620.cpp b/src/mame/drivers/hp2620.cpp
index 376d2056c51..cb3ed88143c 100644
--- a/src/mame/drivers/hp2620.cpp
+++ b/src/mame/drivers/hp2620.cpp
@@ -84,13 +84,13 @@ void hp2620_state::mem_map(address_map &map)
void hp2620_state::io_map(address_map &map)
{
map.global_mask(0xff);
- map(0x00, 0x7f).rw(this, FUNC(hp2620_state::nvram_r), FUNC(hp2620_state::nvram_w)).share("nvram");
- map(0x80, 0x80).r(this, FUNC(hp2620_state::keystat_r));
- map(0x90, 0x90).r(this, FUNC(hp2620_state::sysstat_r));
+ map(0x00, 0x7f).rw(FUNC(hp2620_state::nvram_r), FUNC(hp2620_state::nvram_w)).share("nvram");
+ map(0x80, 0x80).r(FUNC(hp2620_state::keystat_r));
+ map(0x90, 0x90).r(FUNC(hp2620_state::sysstat_r));
map(0xa0, 0xa3).w("acia", FUNC(mos6551_device::write));
map(0xa4, 0xa7).r("acia", FUNC(mos6551_device::read));
- map(0xa8, 0xa8).w(this, FUNC(hp2620_state::modem_w));
- map(0xb8, 0xb8).w(this, FUNC(hp2620_state::keydisp_w));
+ map(0xa8, 0xa8).w(FUNC(hp2620_state::modem_w));
+ map(0xb8, 0xb8).w(FUNC(hp2620_state::keydisp_w));
}
static INPUT_PORTS_START( hp2622 )