v0.4.2
v0.4.2
-
Adds
truanm extract
(truanm x
) to extract images. See the readme for more details. -
Adds additional flags to tweak decompilation:
--no-blocks
: Disables conditional and loop decompilation, leaving behind allgoto
s and labels in their natural state.--no-intrinsics
: Forces every instruction to decompile intoname(arg1, arg2)
etc. (e.g.addf(F1, 0.3)
instead ofF1 += 0.3;
).--no-arguments
: Forces all instructions to decompile into raw form using pseudo-arguments. (e.g.addi(@mask=0b1, @blob="10270000 24000000")
).
These can help work with unusual files.
-
Bugfix: Floating point comparisons actually work now instead of causing a panic. So that's cool.