summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/quakeat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/quakeat.cpp')
-rw-r--r--src/mame/drivers/quakeat.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/quakeat.cpp b/src/mame/drivers/quakeat.cpp
index eba72a4008c..b59b01480a5 100644
--- a/src/mame/drivers/quakeat.cpp
+++ b/src/mame/drivers/quakeat.cpp
@@ -77,6 +77,8 @@ public:
virtual void video_start() override;
uint32_t screen_update_quake(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void quake(machine_config &config);
+ void quake_io(address_map &map);
+ void quake_map(address_map &map);
};
@@ -89,11 +91,11 @@ uint32_t quakeat_state::screen_update_quake(screen_device &screen, bitmap_ind16
return 0;
}
-static ADDRESS_MAP_START( quake_map, AS_PROGRAM, 32, quakeat_state )
+ADDRESS_MAP_START(quakeat_state::quake_map)
AM_RANGE(0x00000000, 0x0000ffff) AM_ROM AM_REGION("pc_bios", 0) /* BIOS */
ADDRESS_MAP_END
-static ADDRESS_MAP_START( quake_io, AS_IO, 32, quakeat_state )
+ADDRESS_MAP_START(quakeat_state::quake_io)
AM_IMPORT_FROM(pcat32_io_common)
AM_RANGE(0x00e8, 0x00eb) AM_NOP
// AM_RANGE(0x01f0, 0x01f7) AM_DEVREADWRITE16("ide", ide_controller_device, read_cs0, write_cs0, 0xffffffff)