summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author therealmogminer@gmail.com <therealmogminer@gmail.com>2016-06-08 10:18:15 +1000
committer Vas Crabb <vas@vastheman.com>2016-06-08 10:18:15 +1000
commit493b5116ffc36ed174db7681bb00f817e70b310a (patch)
treef7c29ab65bd0df317ae8d40f7ac05e927a9693fc
parent1079f45424c264804cc11dffdd1ddd7a8dadbcd7 (diff)
n64.cpp: Disabled fast RAM, as it prevents watchpoints from working and doesn't gain much on the interpreter core. [Ryan Holtz]
-rw-r--r--src/mame/machine/n64.cpp2
1 files changed, 1 insertions, 1 deletions
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_device>("rsp");
rsp->rspdrc_set_options(RSPDRC_STRICT_VERIFY);