1
0
Fork 0
forked from len0rd/rockbox

FS#7182: Second attempt by Dave Chapman at getting ARM disassembler to compile in Linux. This version produces identical output to the Windows version.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14128 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Barry Wardell 2007-08-01 22:19:22 +00:00
parent 0b8dd125c3
commit c5b5220595
2 changed files with 12 additions and 9 deletions

View file

@ -1,10 +1,11 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#define ULONG unsigned long
#define USHORT unsigned short
#define UCHAR unsigned char
#define ULONG uint32_t
#define USHORT uint16_t
#define UCHAR uint8_t
ULONG isdata[1000000]; /* each bit defines one byte as: code=0, data=1 */
@ -115,4 +116,5 @@ int main(int argc, char **argv)
}
fclose(in);
return 0;
}