diff options
Diffstat (limited to 'lib/dump.lua')
-rw-r--r-- | lib/dump.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/dump.lua b/lib/dump.lua index 652761ff..0f9f7b2b 100644 --- a/lib/dump.lua +++ b/lib/dump.lua | |||
@@ -320,6 +320,10 @@ local function printsnap(tr, snap) | |||
320 | else | 320 | else |
321 | local m, ot, op1, op2 = traceir(tr, ref) | 321 | local m, ot, op1, op2 = traceir(tr, ref) |
322 | out:write(colorize(format("%04d", ref), band(ot, 31))) | 322 | out:write(colorize(format("%04d", ref), band(ot, 31))) |
323 | if band(sn, 0x80000) ~= 0 then -- SNAP_SOFTFPNUM | ||
324 | local m, ot, op1, op2 = traceir(tr, ref+1) | ||
325 | out:write(colorize(format("/%04d", ref+1), band(ot, 31))) | ||
326 | end | ||
323 | end | 327 | end |
324 | out:write(band(sn, 0x10000) == 0 and " " or "|") -- SNAP_FRAME | 328 | out:write(band(sn, 0x10000) == 0 and " " or "|") -- SNAP_FRAME |
325 | else | 329 | else |