ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/src/disass/bfd.h
(Generate patch)

Comparing mon/src/disass/bfd.h (file contents):
Revision 1.5 by gbeauche, 2003-01-29T20:56:50Z vs.
Revision 1.6 by gbeauche, 2007-06-07T09:51:56Z

# Line 25 | Line 25 | enum bfd_architecture {
25   #define bfd_mach_m68030 5
26   #define bfd_mach_m68040 6
27   #define bfd_mach_m68060 7
28 +        bfd_arch_mips,
29 + #define bfd_mach_mips3000 3000
30 + #define bfd_mach_mips3900 3900
31 + #define bfd_mach_mips4000 4000
32 + #define bfd_mach_mips4010 4010
33 + #define bfd_mach_mips4100 4100
34 + #define bfd_mach_mips4111 4111
35 + #define bfd_mach_mips4120 4120
36 + #define bfd_mach_mips4300 4300
37 + #define bfd_mach_mips4400 4400
38 + #define bfd_mach_mips4600 4600
39 + #define bfd_mach_mips4650 4650
40 + #define bfd_mach_mips5000 5000
41 + #define bfd_mach_mips5400 5400
42 + #define bfd_mach_mips5500 5500
43 + #define bfd_mach_mips6000 6000
44 + #define bfd_mach_mips7000 7000
45 + #define bfd_mach_mips8000 8000
46 + #define bfd_mach_mips9000 9000
47 + #define bfd_mach_mips10000 10000
48 + #define bfd_mach_mips12000 12000
49 + #define bfd_mach_mips16 16
50 + #define bfd_mach_mips5 5
51 + #define bfd_mach_mips_sb1 12310201 /* octal 'SB', 01 */
52 + #define bfd_mach_mipsisa32 32
53 + #define bfd_mach_mipsisa32r2 33
54 + #define bfd_mach_mipsisa64 64
55 + #define bfd_mach_mipsisa64r2 65
56          bfd_arch_i386
57   #define bfd_mach_i386_i386 0
58   #define bfd_mach_i386_i8086 1
# Line 44 | Line 72 | typedef unsigned char bfd_byte;
72   typedef struct _bfd bfd;
73   struct _bfd;
74  
75 + typedef int bfd_boolean;
76 + #undef FALSE
77 + #undef TRUE
78 + #define FALSE 0
79 + #define TRUE 1
80 +
81 + /* Note - these macros do NOT work if STR2 is not a constant string.  */
82 + #define CONST_STRNEQ(STR1,STR2) (strncmp ((STR1), (STR2), sizeof (STR2) - 1) == 0)
83 +
84   #if SIZEOF_LONG == 8
85   #define BFD_HOST_64BIT_LONG 1
86   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines