From d2c6d919520ed715f89eb9f7519c0c68ed279fd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Mon, 1 Aug 2011 22:31:08 +0000 Subject: [PATCH] fix MT bug 3301 (polepos2a, polepos2b stuck in boot sequence) crazy huh --- src/mame/drivers/polepos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/polepos.c b/src/mame/drivers/polepos.c index bedaee9381b..4992f3e11f7 100644 --- a/src/mame/drivers/polepos.c +++ b/src/mame/drivers/polepos.c @@ -520,7 +520,7 @@ ADDRESS_MAP_END /* the same memory map is used by both Z8002 CPUs; all RAM areas are shared */ static ADDRESS_MAP_START( z8002_map, AS_PROGRAM, 16 ) AM_RANGE(0x0000, 0x7fff) AM_ROM - AM_RANGE(0x6000, 0x6001) AM_MIRROR(0x1ffe) AM_WRITE(polepos_z8002_nvi_enable_w) /* NVI enable - *NOT* shared by the two CPUs */ + AM_RANGE(0x6000, 0x6001) AM_MIRROR(0x0ffe) AM_WRITE(polepos_z8002_nvi_enable_w) /* NVI enable - *NOT* shared by the two CPUs */ AM_RANGE(0x8000, 0x8fff) AM_READWRITE(polepos_sprite16_r, polepos_sprite16_w) AM_BASE_MEMBER(polepos_state, m_sprite16_memory) /* Motion Object */ AM_RANGE(0x9000, 0x97ff) AM_READWRITE(polepos_road16_r, polepos_road16_w) AM_BASE_MEMBER(polepos_state, m_road16_memory) /* Road Memory */ AM_RANGE(0x9800, 0x9fff) AM_READWRITE(polepos_alpha16_r, polepos_alpha16_w) AM_BASE_MEMBER(polepos_state, m_alpha16_memory) /* Alphanumeric (char ram) */