summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ts3000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ts3000.cpp')
-rw-r--r--src/mame/drivers/ts3000.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/ts3000.cpp b/src/mame/drivers/ts3000.cpp
index 79d65248f16..399f375844e 100644
--- a/src/mame/drivers/ts3000.cpp
+++ b/src/mame/drivers/ts3000.cpp
@@ -22,16 +22,18 @@ public:
{ }
void ts3000(machine_config &config);
+void io_map(address_map &map);
+void mem_map(address_map &map);
private:
// required_device<cpu_device> m_maincpu;
};
-static ADDRESS_MAP_START( mem_map, AS_PROGRAM, 8, ts3000_state )
+ADDRESS_MAP_START(ts3000_state::mem_map)
AM_RANGE(0x00000,0x0ffff) AM_RAM
AM_RANGE(0xfc000,0xfffff) AM_ROM AM_REGION("roms", 0)
ADDRESS_MAP_END
-static ADDRESS_MAP_START( io_map, AS_PROGRAM, 8, ts3000_state )
+ADDRESS_MAP_START(ts3000_state::io_map)
ADDRESS_MAP_END
static INPUT_PORTS_START( ts3000 )