summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/unsp/unspdasm_fxxx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/unsp/unspdasm_fxxx.cpp')
-rw-r--r--src/devices/cpu/unsp/unspdasm_fxxx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/unsp/unspdasm_fxxx.cpp b/src/devices/cpu/unsp/unspdasm_fxxx.cpp
index 2e3d44f1203..be663bed7b0 100644
--- a/src/devices/cpu/unsp/unspdasm_fxxx.cpp
+++ b/src/devices/cpu/unsp/unspdasm_fxxx.cpp
@@ -83,9 +83,9 @@ offs_t unsp_disassembler::disassemble_fxxx_001_group(std::ostream& stream, offs_
uint8_t d = (op & 0x0400) >> 10;
if (d)
- util::stream_format(stream, "%s ds:[$04x],%d", bitops[bitop], offset);
+ util::stream_format(stream, "%s ds:[%04x],%d", bitops[bitop], ximm, offset);
else
- util::stream_format(stream, "%s [$04x],%d", bitops[bitop], offset);
+ util::stream_format(stream, "%s [%04x],%d", bitops[bitop], ximm, offset);
return UNSP_DASM_OK;
}