FreeCalypso > hg > freecalypso-reveng
view ticoff/intstruct.h @ 86:537cf2245d98
beginning of ARM7 disassembler
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Fri, 28 Mar 2014 07:01:27 +0000 |
parents | da103b9377e3 |
children | e650fdc743fe |
line wrap: on
line source
/* * The structures defined in this header file * are internal to our utility. */ struct internal_scnhdr { char *name; unsigned size; unsigned data_offset; unsigned reloc_offset; unsigned line_offset; unsigned nreloc; unsigned nlineent; unsigned flags; unsigned nsymbols; struct internal_syment **sorted_symbols; }; struct internal_syment { char *name; unsigned value; int scnum; int type; int class; u_char *aux; struct internal_scnhdr *section; };