From e09b05bd582418b0fabc450e533b4019eaad59e9 Mon Sep 17 00:00:00 2001 From: cam900 Date: Wed, 13 May 2020 21:33:48 +0900 Subject: [PATCH] jaguar.cpp: Add notes of debugging feature GPU code can be executed out of external RAM, Reference: Midsummer Technical Reference Manual --- src/devices/cpu/jaguar/jaguar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/jaguar/jaguar.cpp b/src/devices/cpu/jaguar/jaguar.cpp index de7421181f9..17272b39e8c 100644 --- a/src/devices/cpu/jaguar/jaguar.cpp +++ b/src/devices/cpu/jaguar/jaguar.cpp @@ -481,7 +481,7 @@ void jaguargpu_cpu_device::execute_run() do { /* debugging */ - //if (PC < 0xf03000 || PC > 0xf04000) { fatalerror("GPU: PC = %06X (ppc = %06X)\n", PC, m_ppc); } + //if ((m_version < 3) && (PC < 0xf03000 || PC > 0xf04000)) { fatalerror("GPU: PC = %06X (ppc = %06X)\n", PC, m_ppc); } m_ppc = PC; debugger_instruction_hook(PC);