summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/prof180x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/prof180x.cpp')
-rw-r--r--src/mame/drivers/prof180x.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/prof180x.cpp b/src/mame/drivers/prof180x.cpp
index 649652ae5ab..4888d2ca6ba 100644
--- a/src/mame/drivers/prof180x.cpp
+++ b/src/mame/drivers/prof180x.cpp
@@ -188,15 +188,15 @@ READ8_MEMBER( prof180x_state::status_r )
void prof180x_state::prof180x_mem(address_map &map)
{
- map(0x0000, 0xffff).rw(this, FUNC(prof180x_state::read), FUNC(prof180x_state::write));
+ map(0x0000, 0xffff).rw(FUNC(prof180x_state::read), FUNC(prof180x_state::write));
}
void prof180x_state::prof180x_io(address_map &map)
{
- map(0x08, 0x08).mirror(0xff00).w(this, FUNC(prof180x_state::flr_w));
- map(0x09, 0x09).select(0xff00).r(this, FUNC(prof180x_state::status_r));
+ map(0x08, 0x08).mirror(0xff00).w(FUNC(prof180x_state::flr_w));
+ map(0x09, 0x09).select(0xff00).r(FUNC(prof180x_state::status_r));
map(0x0a, 0x0a).mirror(0xff00).rw(FDC9268_TAG, FUNC(upd765a_device::mdma_r), FUNC(upd765a_device::mdma_w));
- map(0x0b, 0x0b).mirror(0xff00).w("cent_data_out", FUNC(output_latch_device::write));
+ map(0x0b, 0x0b).mirror(0xff00).w("cent_data_out", FUNC(output_latch_device::bus_w));
map(0x0c, 0x0d).mirror(0xff00).m(FDC9268_TAG, FUNC(upd765a_device::map));
}