summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/itgamble.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/itgamble.cpp')
-rw-r--r--src/mame/drivers/itgamble.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/drivers/itgamble.cpp b/src/mame/drivers/itgamble.cpp
index 37c4de2bb89..70c84ace1b2 100644
--- a/src/mame/drivers/itgamble.cpp
+++ b/src/mame/drivers/itgamble.cpp
@@ -108,10 +108,11 @@ uint32_t itgamble_state::screen_update(screen_device &screen, bitmap_ind16 &bitm
* Memory map information *
*************************/
-ADDRESS_MAP_START(itgamble_state::itgamble_map)
- ADDRESS_MAP_GLOBAL_MASK(0xffffff)
- AM_RANGE(0x000000, 0xffffff) AM_ROM
-ADDRESS_MAP_END
+void itgamble_state::itgamble_map(address_map &map)
+{
+ map.global_mask(0xffffff);
+ map(0x000000, 0xffffff).rom();
+}
/*************************