From 493b5116ffc36ed174db7681bb00f817e70b310a Mon Sep 17 00:00:00 2001 From: "therealmogminer@gmail.com" Date: Wed, 8 Jun 2016 10:18:15 +1000 Subject: [PATCH] n64.cpp: Disabled fast RAM, as it prevents watchpoints from working and doesn't gain much on the interpreter core. [Ryan Holtz] --- src/mame/machine/n64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/machine/n64.cpp b/src/mame/machine/n64.cpp index 9ee9ba354f4..df66c953d9b 100644 --- a/src/mame/machine/n64.cpp +++ b/src/mame/machine/n64.cpp @@ -2731,7 +2731,7 @@ void n64_state::machine_start() m_vr4300->mips3drc_set_options(MIPS3DRC_COMPATIBLE_OPTIONS); /* configure fast RAM regions */ - m_vr4300->add_fastram(0x00000000, 0x007fffff, FALSE, m_rdram); + //m_vr4300->add_fastram(0x00000000, 0x007fffff, FALSE, m_rdram); rsp_device *rsp = machine().device("rsp"); rsp->rspdrc_set_options(RSPDRC_STRICT_VERIFY);