summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hng64.c
diff options
context:
space:
mode:
author therealmogminer@gmail.com <therealmogminer@gmail.com>2015-03-29 19:20:21 +0200
committer therealmogminer@gmail.com <therealmogminer@gmail.com>2015-03-29 19:20:52 +0200
commit4e11cfcb0daa55a6e0f1eac61dd04555bf8378d4 (patch)
treef803e0c4d6294ac99efeda47b994fb9334678d64 /src/mame/drivers/hng64.c
parent9be2780fcd8d92b0008bd5b834691ebc2ed32032 (diff)
- mips3: Made fast RAM option common to both interpreter and DRC. [MooglyGuy]
Diffstat (limited to 'src/mame/drivers/hng64.c')
-rw-r--r--src/mame/drivers/hng64.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/hng64.c b/src/mame/drivers/hng64.c
index 0b01b59c823..7046dccd0c6 100644
--- a/src/mame/drivers/hng64.c
+++ b/src/mame/drivers/hng64.c
@@ -1490,10 +1490,10 @@ void hng64_state::machine_start()
/* set the fastest DRC options */
m_maincpu->mips3drc_set_options(MIPS3DRC_FASTEST_OPTIONS + MIPS3DRC_STRICT_VERIFY);
- /* configure fast RAM regions for DRC */
- m_maincpu->mips3drc_add_fastram(0x00000000, 0x00ffffff, FALSE, m_mainram);
- m_maincpu->mips3drc_add_fastram(0x04000000, 0x05ffffff, TRUE, m_cart);
- m_maincpu->mips3drc_add_fastram(0x1fc00000, 0x1fc7ffff, TRUE, m_rombase);
+ /* configure fast RAM regions */
+ m_maincpu->add_fastram(0x00000000, 0x00ffffff, FALSE, m_mainram);
+ m_maincpu->add_fastram(0x04000000, 0x05ffffff, TRUE, m_cart);
+ m_maincpu->add_fastram(0x1fc00000, 0x1fc7ffff, TRUE, m_rombase);
m_comm_rom = memregion("user2")->base();
m_comm_ram = auto_alloc_array(machine(),UINT8,0x10000);