From 82d049361e59ca58ebf85d17b8a2324a2a9181a3 Mon Sep 17 00:00:00 2001 From: Paul Cercueil Date: Fri, 4 Aug 2023 17:24:07 +0200 Subject: [PATCH] lightrec: Increase size of hw registers area Increase it from 0x2000 bytes (the real area size on a PS1) to 0x8000 bytes to support the BIOS extracted from the PS3 firmware. Signed-off-by: Paul Cercueil --- libpcsxcore/lightrec/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpcsxcore/lightrec/plugin.c b/libpcsxcore/lightrec/plugin.c index 72201c16..eb3d5e16 100644 --- a/libpcsxcore/lightrec/plugin.c +++ b/libpcsxcore/lightrec/plugin.c @@ -291,7 +291,7 @@ static struct lightrec_mem_map lightrec_map[] = { [PSX_MAP_HW_REGISTERS] = { /* Hardware registers */ .pc = 0x1f801000, - .length = 0x2000, + .length = 0x8000, .ops = &hw_regs_ops, }, [PSX_MAP_CACHE_CONTROL] = { -- 2.39.2