forked from len0rd/rockbox
FS#7182: Initial attempt by Dave Chapman at getting ARM disassembler to compile in Linux.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14127 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
307d2ddce9
commit
0b8dd125c3
3 changed files with 31 additions and 4 deletions
|
|
@ -10,7 +10,7 @@ ULONG isdata[1000000]; /* each bit defines one byte as: code=0, data=1 */
|
|||
|
||||
extern void dis_asm(ULONG off, ULONG val, char *stg);
|
||||
|
||||
void main(int argc, char **argv)
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
FILE *in, *out;
|
||||
char *ptr, stg[256];
|
||||
|
|
@ -20,7 +20,7 @@ void main(int argc, char **argv)
|
|||
|
||||
if(argc == 1 || strcmp(argv[1], "--help") == 0)
|
||||
{ printf("Usage: arm_disass [input file]\n");
|
||||
printf(" disassembles input file to 'disasm.txt'");
|
||||
printf(" disassembles input file to 'disasm.txt'\n");
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
|
|
@ -115,4 +115,4 @@ void main(int argc, char **argv)
|
|||
}
|
||||
|
||||
fclose(in);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue