ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/src/disass/bfd.h
Revision: 1.1
Committed: 2000-10-05T14:52:03Z (23 years, 10 months ago) by cebix
Content type: text/plain
Branch: MAIN
Log Message:
- updated spec file
- added bfd.h

File Contents

# User Rev Content
1 cebix 1.1 /*
2     * bfd.h - Dummy bfd library header file
3     */
4    
5     #include "ansidecl.h"
6    
7     enum bfd_flavour {
8     bfd_target_unknown_flavour
9     };
10    
11     enum bfd_endian {
12     BFD_ENDIAN_BIG,
13     BFD_ENDIAN_LITTLE,
14     BFD_ENDIAN_UNKNOWN
15     };
16    
17     enum bfd_architecture {
18     bfd_arch_unknown,
19     bfd_arch_m68k,
20     #define bfd_mach_m68000 1
21     #define bfd_mach_m68008 2
22     #define bfd_mach_m68010 3
23     #define bfd_mach_m68020 4
24     #define bfd_mach_m68030 5
25     #define bfd_mach_m68040 6
26     #define bfd_mach_m68060 7
27     bfd_arch_i386
28     #define bfd_mach_i386_i386 0
29     #define bfd_mach_i386_i8086 1
30     };
31    
32     typedef struct symbol_cache_entry {
33     CONST char *name;
34     } asymbol;
35    
36     typedef unsigned long bfd_vma;
37     typedef long bfd_signed_vma;
38     typedef unsigned char bfd_byte;
39    
40     typedef struct _bfd bfd;
41     struct _bfd;