diff options
author | 2015-07-20 08:11:41 +0200 | |
---|---|---|
committer | 2015-07-20 08:11:41 +0200 | |
commit | 4bcb0c13f50ddb1cd3fd0341b4bb31d9c3c7fc7a (patch) | |
tree | 55eccacfca0e69435d0d4e6615205310ca11f271 /src/emu/cpu/mips/mips3.c | |
parent | d132946c6f45aa8d271c6180e86f72dd08243048 (diff) | |
parent | 229785f695b26c702c8490792611f59d0366a933 (diff) |
Merge pull request #5 from mamedev/master
Sync to base master
Diffstat (limited to 'src/emu/cpu/mips/mips3.c')
-rw-r--r-- | src/emu/cpu/mips/mips3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/mips/mips3.c b/src/emu/cpu/mips/mips3.c index 3b377dfa64f..ce8466b2b21 100644 --- a/src/emu/cpu/mips/mips3.c +++ b/src/emu/cpu/mips/mips3.c @@ -101,7 +101,7 @@ static const UINT8 fpmode_source[4] = MEMORY ACCESSORS ***************************************************************************/ -#define ROPCODE(pc) direct->read_decrypted_dword(pc) +#define ROPCODE(pc) direct->read_dword(pc) const device_type VR4300BE = &device_creator<vr4300be_device>; @@ -191,8 +191,6 @@ mips3_device::mips3_device(const machine_config &mconfig, device_type type, cons } memset(m_fastram, 0, sizeof(m_fastram)); memset(m_hotspot, 0, sizeof(m_hotspot)); - - m_isdrc = mconfig.options().drc() ? true : false; } @@ -323,6 +321,8 @@ void mips3_device::check_irqs() void mips3_device::device_start() { + m_isdrc = (mconfig().options().drc() && !mconfig().m_force_no_drc) ? true : false; + /* allocate the implementation-specific state from the full cache */ m_core = (internal_mips3_state *)m_cache.alloc_near(sizeof(internal_mips3_state)); |