summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/astropc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/astropc.cpp')
-rw-r--r--src/mame/drivers/astropc.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/astropc.cpp b/src/mame/drivers/astropc.cpp
index f7653508979..d139da1bb02 100644
--- a/src/mame/drivers/astropc.cpp
+++ b/src/mame/drivers/astropc.cpp
@@ -24,6 +24,8 @@ public:
{ }
void astropc(machine_config &config);
+ void astropc_io(address_map &map);
+ void astropc_map(address_map &map);
protected:
// devices
@@ -32,12 +34,12 @@ public:
DECLARE_DRIVER_INIT(astropc);
};
-static ADDRESS_MAP_START( astropc_map, AS_PROGRAM, 32, astropc_state )
+ADDRESS_MAP_START(astropc_state::astropc_map)
AM_RANGE(0x000c0000, 0x000fffff) AM_ROM AM_REGION("bios", 0 )
AM_RANGE(0xfffc0000, 0xffffffff) AM_ROM AM_REGION("bios", 0 )
ADDRESS_MAP_END
-static ADDRESS_MAP_START( astropc_io, AS_IO, 32, astropc_state )
+ADDRESS_MAP_START(astropc_state::astropc_io)
ADDRESS_MAP_END