summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/istrebiteli.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/istrebiteli.cpp')
-rw-r--r--src/mame/drivers/istrebiteli.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/istrebiteli.cpp b/src/mame/drivers/istrebiteli.cpp
index 38d2875b402..12558aabdc1 100644
--- a/src/mame/drivers/istrebiteli.cpp
+++ b/src/mame/drivers/istrebiteli.cpp
@@ -380,20 +380,20 @@ void istrebiteli_state::io_map(address_map &map)
{
map.global_mask(0xff);
map.unmap_value_high();
- map(0xb0, 0xbf).w(this, FUNC(istrebiteli_state::tileram_w));
- map(0xc0, 0xc3).rw(this, FUNC(istrebiteli_state::ppi0_r), FUNC(istrebiteli_state::ppi0_w));
- map(0xc4, 0xc7).rw(this, FUNC(istrebiteli_state::ppi1_r), FUNC(istrebiteli_state::ppi1_w));
- map(0xc8, 0xcf).w(this, FUNC(istrebiteli_state::spr_xy_w));
+ map(0xb0, 0xbf).w(FUNC(istrebiteli_state::tileram_w));
+ map(0xc0, 0xc3).rw(FUNC(istrebiteli_state::ppi0_r), FUNC(istrebiteli_state::ppi0_w));
+ map(0xc4, 0xc7).rw(FUNC(istrebiteli_state::ppi1_r), FUNC(istrebiteli_state::ppi1_w));
+ map(0xc8, 0xcf).w(FUNC(istrebiteli_state::spr_xy_w));
}
void istrebiteli_state::moto_io_map(address_map &map)
{
map.global_mask(0xff);
map.unmap_value_high();
- map(0x30, 0x37).w(this, FUNC(istrebiteli_state::moto_spr_xy_w));
+ map(0x30, 0x37).w(FUNC(istrebiteli_state::moto_spr_xy_w));
map(0x38, 0x3b).rw(m_ppi0, FUNC(i8255_device::read), FUNC(i8255_device::write));
map(0x3c, 0x3f).rw(m_ppi1, FUNC(i8255_device::read), FUNC(i8255_device::write));
- map(0x40, 0x4f).w(this, FUNC(istrebiteli_state::moto_tileram_w));
+ map(0x40, 0x4f).w(FUNC(istrebiteli_state::moto_tileram_w));
}
CUSTOM_INPUT_MEMBER(istrebiteli_state::collision_r)