From 091937f6cd740b2a7dec3b5cffd9023611bc4392 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 29 Jan 2009 09:24:46 +0000 Subject: [PATCH] 02880: stactics: Scratchpad RAM is too large (currently 2 KB, should be 256 bytes with mirroring). --- src/mame/drivers/stactics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/stactics.c b/src/mame/drivers/stactics.c index ce7c37d813b..e349d1147f7 100644 --- a/src/mame/drivers/stactics.c +++ b/src/mame/drivers/stactics.c @@ -173,7 +173,7 @@ static INTERRUPT_GEN( stactics_interrupt ) static ADDRESS_MAP_START( main_map, ADDRESS_SPACE_PROGRAM, 8 ) AM_RANGE(0x0000, 0x2fff) AM_ROM - AM_RANGE(0x4000, 0x47ff) AM_RAM + AM_RANGE(0x4000, 0x40ff) AM_MIRROR(0x0700) AM_RAM AM_RANGE(0x5000, 0x5000) AM_MIRROR(0x0fff) AM_READ_PORT("IN0") AM_RANGE(0x6000, 0x6000) AM_MIRROR(0x0fff) AM_READ_PORT("IN1") AM_RANGE(0x6000, 0x6001) AM_MIRROR(0x0f08) AM_WRITE(stactics_coin_lockout_w)