summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/globalvr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/globalvr.cpp')
-rw-r--r--src/mame/drivers/globalvr.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/globalvr.cpp b/src/mame/drivers/globalvr.cpp
index 0e14019948d..66c71f313fc 100644
--- a/src/mame/drivers/globalvr.cpp
+++ b/src/mame/drivers/globalvr.cpp
@@ -77,9 +77,10 @@ protected:
-ADDRESS_MAP_START(globalvr_state::globalvr_map)
- AM_RANGE(0x00000000, 0xffffff) AM_RAM
-ADDRESS_MAP_END
+void globalvr_state::globalvr_map(address_map &map)
+{
+ map(0x00000000, 0xffffff).ram();
+}
static INPUT_PORTS_START( globalvr )