summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/invqix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/invqix.cpp')
-rw-r--r--src/mame/drivers/invqix.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/invqix.cpp b/src/mame/drivers/invqix.cpp
index 55a09f0b7b2..6cd5a22edd2 100644
--- a/src/mame/drivers/invqix.cpp
+++ b/src/mame/drivers/invqix.cpp
@@ -281,23 +281,23 @@ void invqix_state::invqix_prg_map(address_map &map)
{
map(0x000000, 0x1fffff).rom().region("program", 0);
map(0x200000, 0x21ffff).ram();
- map(0x400001, 0x400001).w("oki", FUNC(okim9810_device::write_tmp_register));
+ map(0x400001, 0x400001).w("oki", FUNC(okim9810_device::tmp_register_w));
map(0x400000, 0x400000).w("oki", FUNC(okim9810_device::write));
map(0x400002, 0x400002).r("oki", FUNC(okim9810_device::read));
map(0x600000, 0x61ffff).ram().share("vram");
- map(0x620004, 0x620005).w(this, FUNC(invqix_state::vctl_w));
+ map(0x620004, 0x620005).w(FUNC(invqix_state::vctl_w));
}
void invqix_state::invqix_io_map(address_map &map)
{
map(h8_device::PORT_1, h8_device::PORT_1).portr("P1");
map(h8_device::PORT_2, h8_device::PORT_2).portr("SYSTEM").nopw();
- map(h8_device::PORT_3, h8_device::PORT_3).rw(this, FUNC(invqix_state::port3_r), FUNC(invqix_state::port3_w));
+ map(h8_device::PORT_3, h8_device::PORT_3).rw(FUNC(invqix_state::port3_r), FUNC(invqix_state::port3_w));
map(h8_device::PORT_4, h8_device::PORT_4).portr("P4");
- map(h8_device::PORT_5, h8_device::PORT_5).rw(this, FUNC(invqix_state::port5_r), FUNC(invqix_state::port5_w));
- map(h8_device::PORT_6, h8_device::PORT_6).rw(this, FUNC(invqix_state::port6_r), FUNC(invqix_state::port6_w));
- map(h8_device::PORT_A, h8_device::PORT_A).r(this, FUNC(invqix_state::porta_r));
- map(h8_device::PORT_G, h8_device::PORT_G).r(this, FUNC(invqix_state::portg_r)).nopw();
+ map(h8_device::PORT_5, h8_device::PORT_5).rw(FUNC(invqix_state::port5_r), FUNC(invqix_state::port5_w));
+ map(h8_device::PORT_6, h8_device::PORT_6).rw(FUNC(invqix_state::port6_r), FUNC(invqix_state::port6_w));
+ map(h8_device::PORT_A, h8_device::PORT_A).r(FUNC(invqix_state::porta_r));
+ map(h8_device::PORT_G, h8_device::PORT_G).r(FUNC(invqix_state::portg_r)).nopw();
}
static INPUT_PORTS_START( invqix )