summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Alex W. Jackson <alex.w.jackson@gmail.com>2013-12-23 09:15:09 +0000
committer Alex W. Jackson <alex.w.jackson@gmail.com>2013-12-23 09:15:09 +0000
commit3034b503d83e940ee7805a13e074d56993523e56 (patch)
tree758045d81cd709297a9eda95962cb590654a1876
parent23392621259c0d3ed3f789848bcd76da1e927589 (diff)
twin16: fix audio cpu RAM size [Alex Jackson]
-rw-r--r--src/mame/drivers/twin16.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/twin16.c b/src/mame/drivers/twin16.c
index c5a330b6c94..12bd515165a 100644
--- a/src/mame/drivers/twin16.c
+++ b/src/mame/drivers/twin16.c
@@ -162,7 +162,7 @@ WRITE8_MEMBER(twin16_state::twin16_upd_start_w)
static ADDRESS_MAP_START( sound_map, AS_PROGRAM, 8, twin16_state )
AM_RANGE(0x0000, 0x7fff) AM_ROM
- AM_RANGE(0x8000, 0x8fff) AM_RAM
+ AM_RANGE(0x8000, 0x87ff) AM_RAM
AM_RANGE(0x9000, 0x9000) AM_WRITE(twin16_upd_reset_w)
AM_RANGE(0xa000, 0xa000) AM_READ(soundlatch_byte_r)
AM_RANGE(0xb000, 0xb00d) AM_DEVREADWRITE("k007232", k007232_device, read, write)