02880: stactics: Scratchpad RAM is too large (currently 2 KB, should be 256 bytes with mirroring).

This commit is contained in:
Aaron Giles 2009-01-29 09:24:46 +00:00
parent ac354ae99a
commit 091937f6cd

View File

@ -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)