summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/funkball.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/funkball.cpp')
-rw-r--r--src/mame/drivers/funkball.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/drivers/funkball.cpp b/src/mame/drivers/funkball.cpp
index 7d397d5f9d5..a53711f3416 100644
--- a/src/mame/drivers/funkball.cpp
+++ b/src/mame/drivers/funkball.cpp
@@ -341,10 +341,10 @@ void funkball_state::funkball_map(address_map &map)
map(0x000f4000, 0x000f7fff).bankr("bios_bank2");
map(0x000f8000, 0x000fbfff).bankr("bios_bank3");
map(0x000fc000, 0x000fffff).bankr("bios_bank4");
- map(0x000e0000, 0x000fffff).w(this, FUNC(funkball_state::bios_ram_w));
+ map(0x000e0000, 0x000fffff).w(FUNC(funkball_state::bios_ram_w));
map(0x00100000, 0x07ffffff).ram();
// AM_RANGE(0x08000000, 0x0fffffff) AM_NOP
- map(0x40008000, 0x400080ff).rw(this, FUNC(funkball_state::biu_ctrl_r), FUNC(funkball_state::biu_ctrl_w));
+ map(0x40008000, 0x400080ff).rw(FUNC(funkball_state::biu_ctrl_r), FUNC(funkball_state::biu_ctrl_w));
map(0x40010e00, 0x40010eff).ram().share("unk_ram");
map(0xff000000, 0xfffdffff).rw(m_voodoo, FUNC(voodoo_device::voodoo_r), FUNC(voodoo_device::voodoo_w));
map(0xfffe0000, 0xffffffff).rom().region("bios", 0); /* System BIOS */
@@ -361,19 +361,19 @@ void funkball_state::flashbank_map(address_map &map)
void funkball_state::funkball_io(address_map &map)
{
pcat32_io_common(map);
- map(0x0022, 0x0023).rw(this, FUNC(funkball_state::io20_r), FUNC(funkball_state::io20_w));
+ map(0x0022, 0x0023).rw(FUNC(funkball_state::io20_r), FUNC(funkball_state::io20_w));
map(0x00e8, 0x00ef).noprw();
- map(0x01f0, 0x01f7).rw("ide", FUNC(ide_controller_device::read_cs0), FUNC(ide_controller_device::write_cs0));
- map(0x03f0, 0x03f7).rw("ide", FUNC(ide_controller_device::read_cs1), FUNC(ide_controller_device::write_cs1));
- map(0x03f8, 0x03ff).rw(this, FUNC(funkball_state::serial_r), FUNC(funkball_state::serial_w));
+ map(0x01f0, 0x01f7).rw("ide", FUNC(ide_controller_device::cs0_r), FUNC(ide_controller_device::cs0_w));
+ map(0x03f0, 0x03f7).rw("ide", FUNC(ide_controller_device::cs1_r), FUNC(ide_controller_device::cs1_w));
+ map(0x03f8, 0x03ff).rw(FUNC(funkball_state::serial_r), FUNC(funkball_state::serial_w));
map(0x0cf8, 0x0cff).rw("pcibus", FUNC(pci_bus_legacy_device::read), FUNC(pci_bus_legacy_device::write));
- map(0x0360, 0x0363).w(this, FUNC(funkball_state::flash_w));
+ map(0x0360, 0x0363).w(FUNC(funkball_state::flash_w));
// AM_RANGE(0x0320, 0x0323) AM_READ(test_r)
- map(0x0360, 0x036f).r(this, FUNC(funkball_state::in_r)); // inputs
+ map(0x0360, 0x036f).r(FUNC(funkball_state::in_r)); // inputs
}
static INPUT_PORTS_START( funkball )