diff options
Diffstat (limited to 'src/emu/cpu/v810/v810dasm.c')
-rw-r--r-- | src/emu/cpu/v810/v810dasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/v810/v810dasm.c b/src/emu/cpu/v810/v810dasm.c index 910467f3f04..2b6038f357a 100644 --- a/src/emu/cpu/v810/v810dasm.c +++ b/src/emu/cpu/v810/v810dasm.c @@ -34,8 +34,8 @@ CPU_DISASSEMBLE( v810 ) UINT32 flags = 0; UINT32 opc,opc2; unsigned size; - opc = R_OP(pc); - opc2 = R_OP(pc+2); + opc = oprom[0] | (oprom[1] << 8); + opc2 = oprom[2] | (oprom[3] << 8); switch(opc>>10) { |