em-eight / ppc2cpp

A PowerPC 32-bit reverse engineering tool
MIT License
12 stars 3 forks source link

Instruction data flow analysis #2

Closed em-eight closed 1 year ago

em-eight commented 1 year ago

Given the instruction bytes and its disassembly (https://github.com/em-eight/ppcdisasm-cpp), create a structure a structure that creates one vector with all instruction inputs and one with all the outputs (with the information of type (imm, reg, global) and value).

Data structures TBD.

em-eight commented 1 year ago

Done