diff options
author | 2013-03-06 14:10:52 +0000 | |
---|---|---|
committer | 2013-03-06 14:10:52 +0000 | |
commit | 62ba32cb4fd12d585bdd8fdcf38ed5a91ff04f53 (patch) | |
tree | 40b97df5883fc8913f397e5a6583bb9643b458db /src/emu/cpu/mips/r3000.c | |
parent | 18e1c572cb20ab53308e7318efc670b3fa7f4a69 (diff) |
pass this instead of NULL and options instead of 0 in the class based cpu cores (nw)
Diffstat (limited to 'src/emu/cpu/mips/r3000.c')
-rw-r--r-- | src/emu/cpu/mips/r3000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/mips/r3000.c b/src/emu/cpu/mips/r3000.c index f2583757106..e458f342c93 100644 --- a/src/emu/cpu/mips/r3000.c +++ b/src/emu/cpu/mips/r3000.c @@ -486,9 +486,9 @@ offs_t r3000_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *op extern CPU_DISASSEMBLE( r3000be ); if (m_endianness == ENDIANNESS_BIG) - return CPU_DISASSEMBLE_NAME(r3000be)(NULL, buffer, pc, oprom, opram, 0); + return CPU_DISASSEMBLE_NAME(r3000be)(this, buffer, pc, oprom, opram, options); else - return CPU_DISASSEMBLE_NAME(r3000le)(NULL, buffer, pc, oprom, opram, 0); + return CPU_DISASSEMBLE_NAME(r3000le)(this, buffer, pc, oprom, opram, options); } |