summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2008-10-19 15:06:20 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2008-10-19 15:06:20 +0000
commit9fc7f4609559d4cf9be242ff2dfbb4b3e44c07b5 (patch)
tree5cf3f872770696c5f748c51558a28027add3859f /src
parent1c9ae23521cdc7442891b1a1926ea2df9a1fa24d (diff)
AICA: fix sample addressing for the full 8 MB [kingshriek].
Diffstat (limited to 'src')
-rw-r--r--src/emu/sound/aica.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/aica.c b/src/emu/sound/aica.c
index 16fb7a453ec..86dd697278e 100644
--- a/src/emu/sound/aica.c
+++ b/src/emu/sound/aica.c
@@ -40,7 +40,7 @@
#define LPCTL(slot) ((slot->udata.data[0x0]>>0x9)&0x0001)
#define PCMS(slot) ((slot->udata.data[0x0]>>0x7)&0x0003)
-#define SA(slot) (((slot->udata.data[0x0]&0x3F)<<16)|(slot->udata.data[0x4/2]))
+#define SA(slot) (((slot->udata.data[0x0]&0x7F)<<16)|(slot->udata.data[0x4/2]))
#define LSA(slot) (slot->udata.data[0x8/2])