summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/comquest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/comquest.cpp')
-rw-r--r--src/mame/drivers/comquest.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/comquest.cpp b/src/mame/drivers/comquest.cpp
index 0e9ec13ae20..57ff8434d98 100644
--- a/src/mame/drivers/comquest.cpp
+++ b/src/mame/drivers/comquest.cpp
@@ -62,10 +62,11 @@ WRITE8_MEMBER(comquest_state::comquest_write)
}
#endif
-ADDRESS_MAP_START(comquest_state::comquest_mem)
+void comquest_state::comquest_mem(address_map &map)
+{
// { 0x0000, 0x7fff, SMH_BANK(1) },
- AM_RANGE(0x0000, 0xfff) AM_ROM
-ADDRESS_MAP_END
+ map(0x0000, 0xfff).rom();
+}
static INPUT_PORTS_START( comquest )
PORT_START("in0")