summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/caprcyc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/caprcyc.cpp')
-rw-r--r--src/mame/drivers/caprcyc.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/caprcyc.cpp b/src/mame/drivers/caprcyc.cpp
index 1102705697f..0c9be4059b7 100644
--- a/src/mame/drivers/caprcyc.cpp
+++ b/src/mame/drivers/caprcyc.cpp
@@ -39,9 +39,10 @@ public:
***************************************************************************/
-ADDRESS_MAP_START(caprcyc_state::caprcyc_map) // TODO...
- AM_RANGE(0x00000000, 0x0003ffff) AM_ROM
-ADDRESS_MAP_END
+void caprcyc_state::caprcyc_map(address_map &map)
+{ // TODO...
+ map(0x00000000, 0x0003ffff).rom();
+}