summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/miniforce.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2018-04-12 03:51:42 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2018-04-12 03:51:42 +1000
commit5f2d69565a780e5e1f05e0d229a795ec321fec2f (patch)
treec34db0e2692147eda30f48577003561fd363bd10 /src/mame/drivers/miniforce.cpp
parentd65887bb61518f5ff64fb74c67faeef6aa9668a1 (diff)
(nw) last bunch for tonight
Diffstat (limited to 'src/mame/drivers/miniforce.cpp')
-rw-r--r--src/mame/drivers/miniforce.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/miniforce.cpp b/src/mame/drivers/miniforce.cpp
index 27e4f87313f..7632c15f1b3 100644
--- a/src/mame/drivers/miniforce.cpp
+++ b/src/mame/drivers/miniforce.cpp
@@ -140,15 +140,16 @@ miniforce_state(const machine_config &mconfig, device_type type, const char *tag
};
#if 0
-ADDRESS_MAP_START(miniforce_state::miniforce_mem)
- ADDRESS_MAP_UNMAP_HIGH
+void miniforce_state::miniforce_mem(address_map &map)
+{
+ map.unmap_value_high();
/* The ROMs contains an OS9 bootloader. It is position independent but reset vector suggests that it sits flat on adress 0 (zero) */
// AM_RANGE (0x000000, 0x003fff) AM_ROM AM_REGION("roms", 0x000000) /* System EPROM Area 16Kb OS9 DEBUG - not verified */
// AM_RANGE (0x004000, 0x01ffff) AM_ROM AM_REGION("roms", 0x004000)/* System EPROM Area 112Kb for System ROM - not verified */
// AM_RANGE (0x020000, 0x03ffff) AM_RAM /* Not verified */
// AM_RANGE (0x100000, 0xfeffff) AM_READWRITE(vme_a24_r, vme_a24_w) /* VMEbus Rev B addresses (24 bits) - not verified */
// AM_RANGE (0xff0000, 0xffffff) AM_READWRITE(vme_a16_r, vme_a16_w) /* VMEbus Rev B addresses (16 bits) - not verified */
-ADDRESS_MAP_END
+}
#endif
/* Start it up */