FreeCalypso > hg > freecalypso-reveng
view leo-obj/tool/atcommon.c @ 267:ace3136d0601
dsample-fw-disasm tpudrv10 code analysis: got to calc_a_b()
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Fri, 19 Jan 2018 05:15:50 +0000 |
| parents | 87b82398a08b |
| children |
line wrap: on
line source
/* * Lean and mean ARM7TDMI disassembler * Written by Spacefalcon the Outlaw */ /* a few disassembly bits common between ARM and Thumb */ char *regnames[16] = {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", "r12", "sp", "lr", "pc"}; char *condition_decode[16] = {"eq", "ne", "cs", "cc", "mi", "pl", "vs", "vc", "hi", "ls", "ge", "lt", "gt", "le", "", "INV"}; char *shift_types[4] = {"lsl", "lsr", "asr", "ror"};
