summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/marinedt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/marinedt.cpp')
-rw-r--r--src/mame/drivers/marinedt.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/marinedt.cpp b/src/mame/drivers/marinedt.cpp
index b9935ecf1fa..c1aa14137f3 100644
--- a/src/mame/drivers/marinedt.cpp
+++ b/src/mame/drivers/marinedt.cpp
@@ -442,24 +442,24 @@ void marinedt_state::marinedt_map(address_map &map)
map.global_mask(0x7fff); /* A15 is not decoded */
map(0x0000, 0x3fff).rom().region("ipl", 0);
map(0x4000, 0x43ff).mirror(0x0400).ram();
- map(0x4800, 0x4bff).mirror(0x0400).ram().w(this, FUNC(marinedt_state::vram_w)).share("vram");
+ map(0x4800, 0x4bff).mirror(0x0400).ram().w(FUNC(marinedt_state::vram_w)).share("vram");
}
void marinedt_state::marinedt_io(address_map &map)
{
map.global_mask(0x0f);
map(0x00, 0x00).portr("DSW1");
- map(0x01, 0x01).r(this, FUNC(marinedt_state::trackball_r));
- map(0x02, 0x02).select(0xc).r(this, FUNC(marinedt_state::pc3259_r));
- map(0x02, 0x04).w(this, FUNC(marinedt_state::obj_0_w));
+ map(0x01, 0x01).r(FUNC(marinedt_state::trackball_r));
+ map(0x02, 0x02).select(0xc).r(FUNC(marinedt_state::pc3259_r));
+ map(0x02, 0x04).w(FUNC(marinedt_state::obj_0_w));
map(0x03, 0x03).portr("SYSTEM");
map(0x04, 0x04).portr("DSW2");
- map(0x05, 0x05).w(this, FUNC(marinedt_state::bgm_w));
- map(0x06, 0x06).w(this, FUNC(marinedt_state::sfx_w));
- map(0x08, 0x0b).w(this, FUNC(marinedt_state::obj_1_w));
- map(0x0d, 0x0d).w(this, FUNC(marinedt_state::layer_enable_w));
+ map(0x05, 0x05).w(FUNC(marinedt_state::bgm_w));
+ map(0x06, 0x06).w(FUNC(marinedt_state::sfx_w));
+ map(0x08, 0x0b).w(FUNC(marinedt_state::obj_1_w));
+ map(0x0d, 0x0d).w(FUNC(marinedt_state::layer_enable_w));
map(0x0e, 0x0e).nopw(); // watchdog
- map(0x0f, 0x0f).w(this, FUNC(marinedt_state::output_w));
+ map(0x0f, 0x0f).w(FUNC(marinedt_state::output_w));
}
static INPUT_PORTS_START( marinedt )