diff options
author | 2008-01-21 00:35:37 +0000 | |
---|---|---|
committer | 2008-01-21 00:35:37 +0000 | |
commit | 977903f2ed1b35c5258990baa5b5f1c897ad3d35 (patch) | |
tree | accb7c63fcda117f61d2c0a1a763a086d66783f5 /src | |
parent | ba63d916a326a017e0f152166d93ba5037608cbe (diff) |
Careless! Broke mspacman. :)
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/pacman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/pacman.c b/src/mame/drivers/pacman.c index 7710289c420..ae22feff108 100644 --- a/src/mame/drivers/pacman.c +++ b/src/mame/drivers/pacman.c @@ -846,7 +846,7 @@ static ADDRESS_MAP_START( mspacman_map, ADDRESS_SPACE_PROGRAM, 8 ) AM_RANGE(0x5040, 0x5040) AM_MIRROR(0xaf3f) AM_READ(input_port_1_r) /* IN1 */ AM_RANGE(0x5080, 0x5080) AM_MIRROR(0xaf3f) AM_READ(input_port_2_r) /* DSW1 */ AM_RANGE(0x50c0, 0x50c0) AM_MIRROR(0xaf3f) AM_READ(input_port_3_r) /* DSW2 */ - AM_RANGE(0x8000, 0xbfff) AM_ROMBANK(2) + AM_RANGE(0x8000, 0xbfff) AM_ROMBANK(1) ADDRESS_MAP_END |