summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/unsp/unspdasm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/unsp/unspdasm.c')
-rw-r--r--src/emu/cpu/unsp/unspdasm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/unsp/unspdasm.c b/src/emu/cpu/unsp/unspdasm.c
index 023d41061a3..602a98a24ba 100644
--- a/src/emu/cpu/unsp/unspdasm.c
+++ b/src/emu/cpu/unsp/unspdasm.c
@@ -53,7 +53,7 @@ static const char *alu[] =
/*****************************************************************************/
-#define UNSP_DASM_OK ((2 * (OP2X ? 2 : 1)) | DASMFLAG_SUPPORTED)
+#define UNSP_DASM_OK ((OP2X ? 2 : 1) | DASMFLAG_SUPPORTED)
CPU_DISASSEMBLE( unsp )
{
@@ -68,7 +68,7 @@ CPU_DISASSEMBLE( unsp )
if(OP0 < 0xf && OPA == 0x7 && OP1 < 2)
{
- print("%s %04x", jmp[OP0], OP1 ? (pc - OPIMM*2) : (pc + OPIMM*2));
+ print("%s %04x", jmp[OP0], OP1 ? (pc - OPIMM + 1) : (pc + OPIMM + 1));
return UNSP_DASM_OK;
}