summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti99_8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ti99_8.cpp')
-rw-r--r--src/mame/drivers/ti99_8.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/ti99_8.cpp b/src/mame/drivers/ti99_8.cpp
index 74ef442b379..8815dcfd9df 100644
--- a/src/mame/drivers/ti99_8.cpp
+++ b/src/mame/drivers/ti99_8.cpp
@@ -264,6 +264,8 @@ public:
void ti99_8(machine_config &config);
void ti99_8_60hz(machine_config &config);
void ti99_8_50hz(machine_config &config);
+ void crumap(address_map &map);
+ void memmap(address_map &map);
private:
// Keyboard support
void set_keyboard_column(int number, int data);
@@ -290,7 +292,7 @@ private:
Memory map. We have a configurable mapper, so we need to delegate the
job to the mapper completely.
*/
-static ADDRESS_MAP_START(memmap, AS_PROGRAM, 8, ti99_8_state)
+ADDRESS_MAP_START(ti99_8_state::memmap)
AM_RANGE(0x0000, 0xffff) AM_DEVREADWRITE(TI998_MAINBOARD_TAG, bus::ti99::internal::mainboard8_device, read, write) AM_DEVSETOFFSET(TI998_MAINBOARD_TAG, bus::ti99::internal::mainboard8_device, setoffset)
ADDRESS_MAP_END
@@ -301,7 +303,7 @@ ADDRESS_MAP_END
(decoded by the "Vaquerro" chip, signal NNOICS*)
*/
-static ADDRESS_MAP_START(crumap, AS_IO, 8, ti99_8_state)
+ADDRESS_MAP_START(ti99_8_state::crumap)
AM_RANGE(0x0000, 0x02ff) AM_READ(cruread)
AM_RANGE(0x0000, 0x0003) AM_DEVREAD(TI_TMS9901_TAG, tms9901_device, read)