summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ted Green <tedgreen99@protonmail.com>2017-09-15 07:24:26 -0600
committer Ted Green <tedgreen99@protonmail.com>2017-09-15 07:24:40 -0600
commit20e7cd381f08e306f53be70aa60ec4792c45b184 (patch)
treebaf8ba116c3c9da5486107a6667c50fcbf5b9c52
parent51c7ddb2a6a40dc70099982c1cf57a821eb70a58 (diff)
iteagle: Set MIPS3DRC_STRICT_VERIFY option. Sees to eliminate game hangs in bbh series. (nw)
-rw-r--r--src/mame/drivers/iteagle.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mame/drivers/iteagle.cpp b/src/mame/drivers/iteagle.cpp
index 1c690d8726d..23c6e09d5ae 100644
--- a/src/mame/drivers/iteagle.cpp
+++ b/src/mame/drivers/iteagle.cpp
@@ -131,12 +131,8 @@ public:
void iteagle_state::machine_start()
{
- /* set the fastest DRC options */
- m_maincpu->mips3drc_set_options(MIPS3DRC_FASTEST_OPTIONS);
-
- /* configure fast RAM regions for DRC */
- //m_maincpu->mips3drc_add_fastram(0x00000000, 16*1024*1024-1, false, m_rambase);
- //m_maincpu->mips3drc_add_fastram(0x1fc00000, 0x1fc7ffff, true, m_rombase);
+ // Setting MIPS3DRC_STRICT_VERIFY seems to eliminate the hangs in the bbh series
+ m_maincpu->mips3drc_set_options(MIPS3DRC_STRICT_VERIFY);
}
void iteagle_state::machine_reset()