Name:
Anonymous
2015-12-15 8:51
Describe it if you like and post a screenshot of its output.
Name:
Anonymous
2015-12-23 15:34
Treedasm, if finished it's going to be like IDA or Radare with one caveat: IDA doesn't allow access to IR, Radare does,
Treedasm allows access to IR and that's it. Actual instructions are basically macro for more basic instructions
E.g.
mov eax, 0 is
eax := 0
update_regs_from_erx eax
ax := eax >> 16
ah := ax >> 8
al := crop ax
so it's like tree.