summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Jonathan Gevaryahu <Lord-Nightmare@users.noreply.github.com>2010-06-11 03:09:22 +0000
committer Jonathan Gevaryahu <Lord-Nightmare@users.noreply.github.com>2010-06-11 03:09:22 +0000
commite8a0ccb39da6874d5fd4393ec070d3e209f4d59e (patch)
tree0675a71f5d37cf12853858c17df40038d65016d2
parente2ee20376ebd8632fbcc74d524b80585945e9f8e (diff)
Fix audio cpu banking in Raiden 2 (add a missing mirror to banking register) [trap15, R. Belmont]
-rw-r--r--src/mame/audio/seibu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/audio/seibu.c b/src/mame/audio/seibu.c
index ea25898714c..3e811712e4e 100644
--- a/src/mame/audio/seibu.c
+++ b/src/mame/audio/seibu.c
@@ -517,6 +517,7 @@ ADDRESS_MAP_START( seibu2_raiden2_sound_map, ADDRESS_SPACE_PROGRAM, 8 )
AM_RANGE(0x4012, 0x4012) AM_READ(seibu_main_data_pending_r)
AM_RANGE(0x4013, 0x4013) AM_READ_PORT("COIN")
AM_RANGE(0x4018, 0x4019) AM_WRITE(seibu_main_data_w)
+ AM_RANGE(0x401a, 0x401a) AM_WRITE(seibu_bank_w)
AM_RANGE(0x401b, 0x401b) AM_WRITE(seibu_coin_w)
AM_RANGE(0x6000, 0x6000) AM_DEVREADWRITE("oki1", okim6295_r, okim6295_w)
AM_RANGE(0x6002, 0x6002) AM_DEVREADWRITE("oki2", okim6295_r, okim6295_w)