summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tugboat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tugboat.cpp')
-rw-r--r--src/mame/drivers/tugboat.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/mame/drivers/tugboat.cpp b/src/mame/drivers/tugboat.cpp
index b23cf5e52d2..d346d2a1234 100644
--- a/src/mame/drivers/tugboat.cpp
+++ b/src/mame/drivers/tugboat.cpp
@@ -233,19 +233,20 @@ void tugboat_state::machine_reset()
}
-ADDRESS_MAP_START(tugboat_state::main_map)
- ADDRESS_MAP_GLOBAL_MASK(0x7fff)
- AM_RANGE(0x0000, 0x01ff) AM_RAM AM_SHARE("ram")
- AM_RANGE(0x1060, 0x1061) AM_DEVWRITE("aysnd", ay8910_device, address_data_w)
- AM_RANGE(0x10a0, 0x10a1) AM_WRITE(hd46505_0_w) /* scrolling is performed changing the start_addr register (0C/0D) */
- AM_RANGE(0x10c0, 0x10c1) AM_WRITE(hd46505_1_w)
- AM_RANGE(0x11e4, 0x11e7) AM_DEVREADWRITE("pia0", pia6821_device, read, write)
- AM_RANGE(0x11e8, 0x11eb) AM_DEVREADWRITE("pia1", pia6821_device, read, write)
+void tugboat_state::main_map(address_map &map)
+{
+ map.global_mask(0x7fff);
+ map(0x0000, 0x01ff).ram().share("ram");
+ map(0x1060, 0x1061).w("aysnd", FUNC(ay8910_device::address_data_w));
+ map(0x10a0, 0x10a1).w(this, FUNC(tugboat_state::hd46505_0_w)); /* scrolling is performed changing the start_addr register (0C/0D) */
+ map(0x10c0, 0x10c1).w(this, FUNC(tugboat_state::hd46505_1_w));
+ map(0x11e4, 0x11e7).rw("pia0", FUNC(pia6821_device::read), FUNC(pia6821_device::write));
+ map(0x11e8, 0x11eb).rw("pia1", FUNC(pia6821_device::read), FUNC(pia6821_device::write));
//AM_RANGE(0x1700, 0x1fff) AM_RAM
- AM_RANGE(0x18e0, 0x18ef) AM_WRITE(score_w)
- AM_RANGE(0x2000, 0x2fff) AM_RAM /* tilemap RAM */
- AM_RANGE(0x4000, 0x7fff) AM_ROM
-ADDRESS_MAP_END
+ map(0x18e0, 0x18ef).w(this, FUNC(tugboat_state::score_w));
+ map(0x2000, 0x2fff).ram(); /* tilemap RAM */
+ map(0x4000, 0x7fff).rom();
+}
static INPUT_PORTS_START( tugboat )