Skip to content

v0.4.2

Compare
Choose a tag to compare
@ExpHP ExpHP released this 11 Jun 04:01
· 317 commits to main since this release

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 all gotos and labels in their natural state.
    • --no-intrinsics: Forces every instruction to decompile into name(arg1, arg2) etc. (e.g. addf(F1, 0.3) instead of F1 += 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.