summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/upd7725/upd7725.c
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-03-06 14:10:52 +0000
committer smf- <smf-@users.noreply.github.com>2013-03-06 14:10:52 +0000
commit62ba32cb4fd12d585bdd8fdcf38ed5a91ff04f53 (patch)
tree40b97df5883fc8913f397e5a6583bb9643b458db /src/emu/cpu/upd7725/upd7725.c
parent18e1c572cb20ab53308e7318efc670b3fa7f4a69 (diff)
pass this instead of NULL and options instead of 0 in the class based cpu cores (nw)
Diffstat (limited to 'src/emu/cpu/upd7725/upd7725.c')
-rwxr-xr-xsrc/emu/cpu/upd7725/upd7725.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/upd7725/upd7725.c b/src/emu/cpu/upd7725/upd7725.c
index fff6a991954..ca7898de241 100755
--- a/src/emu/cpu/upd7725/upd7725.c
+++ b/src/emu/cpu/upd7725/upd7725.c
@@ -327,7 +327,7 @@ UINT32 necdsp_device::disasm_max_opcode_bytes() const
offs_t necdsp_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
{
extern CPU_DISASSEMBLE( upd7725 );
- return CPU_DISASSEMBLE_NAME(upd7725)(NULL, buffer, pc, oprom, opram, 0);
+ return CPU_DISASSEMBLE_NAME(upd7725)(this, buffer, pc, oprom, opram, options);
}
void necdsp_device::execute_run()