From af2b8f15ba2c187088247e950edd28e1885d93b2 Mon Sep 17 00:00:00 2001 From: cracyc Date: Sun, 25 Aug 2013 15:21:01 +0000 Subject: [PATCH] gammagic: CPU isn't going to get very far without anything mapped at 0xf0000. (nw) ---- It now dies in the Award recovery bios, trying to access the fdd. --- src/mame/drivers/gammagic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mame/drivers/gammagic.c b/src/mame/drivers/gammagic.c index 40b1f6ff1c6..158c918826c 100644 --- a/src/mame/drivers/gammagic.c +++ b/src/mame/drivers/gammagic.c @@ -50,6 +50,7 @@ public: static ADDRESS_MAP_START( gammagic_map, AS_PROGRAM, 32, gammagic_state ) AM_RANGE(0x00000000, 0x0009ffff) AM_RAM AM_RANGE(0x000a0000, 0x000bffff) AM_DEVREADWRITE8("vga", vga_device, mem_r, mem_w, 0xffffffff) + AM_RANGE(0x000e0000, 0x000fffff) AM_ROM AM_REGION("user", 0x20000)/* System BIOS */ AM_RANGE(0x00100000, 0x07ffffff) AM_RAM AM_RANGE(0x08000000, 0xfffdffff) AM_NOP AM_RANGE(0xfffe0000, 0xffffffff) AM_ROM AM_REGION("user", 0x20000)/* System BIOS */