summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/uml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/uml.cpp')
-rw-r--r--src/devices/cpu/uml.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/cpu/uml.cpp b/src/devices/cpu/uml.cpp
index 3e14b713c34..5a6fe3a8b3a 100644
--- a/src/devices/cpu/uml.cpp
+++ b/src/devices/cpu/uml.cpp
@@ -1003,6 +1003,11 @@ std::string uml::instruction::disasm(drcuml_state *drcuml) const
util::stream_format(buffer, "%s", param.handle().string());
break;
+ // label
+ case parameter::PTYPE_CODE_LABEL:
+ util::stream_format(buffer, "$%8X", param.label().label());
+ break;
+
default:
util::stream_format(buffer, "???");
break;