From 11c2b5a1e85aae84c740016a62d0898bb04b97f4 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 20 May 2020 18:57:33 +1000 Subject: [PATCH] Bus: Extend SPU address range to 0x400 bytes --- src/core/bus.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/bus.h b/src/core/bus.h index 05f9f25f8..ba0ff5cf5 100644 --- a/src/core/bus.h +++ b/src/core/bus.h @@ -126,7 +126,7 @@ private: MDEC_SIZE = 0x10, MDEC_MASK = MDEC_SIZE - 1, SPU_BASE = 0x1F801C00, - SPU_SIZE = 0x300, + SPU_SIZE = 0x400, SPU_MASK = 0x3FF, EXP2_BASE = 0x1F802000, EXP2_SIZE = 0x2000,