Go to the source code of this file.
|
| #define | ITYPE_UNDEF 0 /* undefined instructions (illegal opcode) */ |
| |
| #define | ITYPE_JMP 1 /* jump instructions */ |
| |
| #define | ITYPE_MEM 2 /* memory instructions */ |
| |
| #define | ITYPE_FMEM 3 /* floating point memory instructions */ |
| |
| #define | ITYPE_BRA 4 /* branch instructions */ |
| |
| #define | ITYPE_OP 5 /* integer instructions */ |
| |
| #define | ITYPE_FOP 6 /* floating point instructions */ |
| |
| #define ITYPE_BRA 4 /* branch instructions */ |
| #define ITYPE_FMEM 3 /* floating point memory instructions */ |
| #define ITYPE_FOP 6 /* floating point instructions */ |
| #define ITYPE_JMP 1 /* jump instructions */ |
| #define ITYPE_MEM 2 /* memory instructions */ |
| #define ITYPE_OP 5 /* integer instructions */ |
| #define ITYPE_UNDEF 0 /* undefined instructions (illegal opcode) */ |
| void disassemble |
( |
u1 * |
start, |
|
|
u1 * |
end |
|
) |
| |
| u1* disassinstr |
( |
u1 * |
code | ) |
|