summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tti.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tti.cpp')
-rw-r--r--src/mame/drivers/tti.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/tti.cpp b/src/mame/drivers/tti.cpp
index 568fdfae5e2..754e46ba7cb 100644
--- a/src/mame/drivers/tti.cpp
+++ b/src/mame/drivers/tti.cpp
@@ -34,6 +34,7 @@ public:
IRQ_CALLBACK_MEMBER(intack);
void tti(machine_config &config);
+ void prg_map(address_map &map);
protected:
required_device<cpu_device> m_maincpu;
required_device<mc68901_device> m_mfp;
@@ -47,7 +48,7 @@ IRQ_CALLBACK_MEMBER(tti_state::intack)
static INPUT_PORTS_START( tti )
INPUT_PORTS_END
-static ADDRESS_MAP_START( prg_map, AS_PROGRAM, 8, tti_state )
+ADDRESS_MAP_START(tti_state::prg_map)
AM_RANGE(0x00000, 0x07fff) AM_ROM AM_REGION("maincpu", 0)
AM_RANGE(0x7e000, 0x7ffff) AM_RAM
AM_RANGE(0x80000, 0x80017) AM_DEVREADWRITE("mfp", mc68901_device, read, write)