summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gamecstl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gamecstl.cpp')
-rw-r--r--src/mame/drivers/gamecstl.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/gamecstl.cpp b/src/mame/drivers/gamecstl.cpp
index f8212570fed..895903a9371 100644
--- a/src/mame/drivers/gamecstl.cpp
+++ b/src/mame/drivers/gamecstl.cpp
@@ -354,7 +354,7 @@ void gamecstl_state::gamecstl_map(address_map &map)
map(0x000b0000, 0x000b7fff).ram().share("cga_ram");
map(0x000e0000, 0x000effff).ram();
map(0x000f0000, 0x000fffff).bankr("bank1");
- map(0x000f0000, 0x000fffff).w(this, FUNC(gamecstl_state::bios_ram_w));
+ map(0x000f0000, 0x000fffff).w(FUNC(gamecstl_state::bios_ram_w));
map(0x00100000, 0x01ffffff).ram();
map(0xfffc0000, 0xffffffff).rom().region("bios", 0); /* System BIOS */
}
@@ -364,12 +364,12 @@ void gamecstl_state::gamecstl_io(address_map &map)
pcat32_io_common(map);
map(0x00e8, 0x00eb).noprw();
map(0x00ec, 0x00ef).noprw();
- map(0x01f0, 0x01f7).rw("ide", FUNC(ide_controller_device::read_cs0), FUNC(ide_controller_device::write_cs0));
+ map(0x01f0, 0x01f7).rw("ide", FUNC(ide_controller_device::cs0_r), FUNC(ide_controller_device::cs0_w));
map(0x0300, 0x03af).noprw();
map(0x03b0, 0x03df).noprw();
- map(0x0278, 0x027b).w(this, FUNC(gamecstl_state::pnp_config_w));
- map(0x03f0, 0x03f7).rw("ide", FUNC(ide_controller_device::read_cs1), FUNC(ide_controller_device::write_cs1));
- map(0x0a78, 0x0a7b).w(this, FUNC(gamecstl_state::pnp_data_w));
+ map(0x0278, 0x027b).w(FUNC(gamecstl_state::pnp_config_w));
+ map(0x03f0, 0x03f7).rw("ide", FUNC(ide_controller_device::cs1_r), FUNC(ide_controller_device::cs1_w));
+ map(0x0a78, 0x0a7b).w(FUNC(gamecstl_state::pnp_data_w));
map(0x0cf8, 0x0cff).rw("pcibus", FUNC(pci_bus_legacy_device::read), FUNC(pci_bus_legacy_device::write));
}