summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mc8030.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mc8030.cpp')
-rw-r--r--src/mame/drivers/mc8030.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/mc8030.cpp b/src/mame/drivers/mc8030.cpp
index 2b65c6ead82..d4f27c3834b 100644
--- a/src/mame/drivers/mc8030.cpp
+++ b/src/mame/drivers/mc8030.cpp
@@ -76,12 +76,12 @@ void mc8030_state::io_map(address_map &map)
map(0x30, 0x3f).mirror(0xff00).noprw(); //"mass storage"
map(0x80, 0x83).mirror(0xff00).rw("zve_ctc", FUNC(z80ctc_device::read), FUNC(z80ctc_device::write)); // user CTC
map(0x84, 0x87).mirror(0xff00).rw("zve_pio", FUNC(z80pio_device::read), FUNC(z80pio_device::write)); // PIO unknown usage
- map(0x88, 0x8f).mirror(0xff00).w(this, FUNC(mc8030_state::zve_write_protect_w));
- map(0xc0, 0xcf).select(0xff00).w(this, FUNC(mc8030_state::vis_w));
+ map(0x88, 0x8f).mirror(0xff00).w(FUNC(mc8030_state::zve_write_protect_w));
+ map(0xc0, 0xcf).select(0xff00).w(FUNC(mc8030_state::vis_w));
map(0xd0, 0xd3).mirror(0xff00).rw("asp_sio", FUNC(z80sio_device::ba_cd_r), FUNC(z80sio_device::ba_cd_w)); // keyboard & IFSS?
map(0xd4, 0xd7).mirror(0xff00).rw("asp_ctc", FUNC(z80ctc_device::read), FUNC(z80ctc_device::write)); // sio bauds, KMBG? and kbd
map(0xd8, 0xdb).mirror(0xff00).rw("asp_pio", FUNC(z80pio_device::read), FUNC(z80pio_device::write)); // external bus
- map(0xe0, 0xef).mirror(0xff00).w(this, FUNC(mc8030_state::eprom_prog_w));
+ map(0xe0, 0xef).mirror(0xff00).w(FUNC(mc8030_state::eprom_prog_w));
}
/* Input ports */