Add support for msp430.
This commit is contained in:
parent
3f8173588e
commit
2469cfa284
92 changed files with 5837 additions and 611 deletions
|
@ -1713,6 +1713,20 @@ enum bfd_architecture
|
|||
bfd_arch_mmix, /* Donald Knuth's educational processor. */
|
||||
bfd_arch_xstormy16,
|
||||
#define bfd_mach_xstormy16 1
|
||||
bfd_arch_msp430, /* Texas Instruments MSP430 architecture. */
|
||||
#define bfd_mach_msp110 110
|
||||
#define bfd_mach_msp11 11
|
||||
#define bfd_mach_msp12 12
|
||||
#define bfd_mach_msp13 13
|
||||
#define bfd_mach_msp14 14
|
||||
#define bfd_mach_msp41 41
|
||||
#define bfd_mach_msp31 31
|
||||
#define bfd_mach_msp32 32
|
||||
#define bfd_mach_msp33 33
|
||||
#define bfd_mach_msp43 43
|
||||
#define bfd_mach_msp44 44
|
||||
#define bfd_mach_msp15 15
|
||||
#define bfd_mach_msp16 16
|
||||
bfd_arch_last
|
||||
};
|
||||
|
||||
|
@ -3246,6 +3260,13 @@ to follow the 16K memory bank of 68HC12 (seen as mapped in the window). */
|
|||
BFD_RELOC_VAX_GLOB_DAT,
|
||||
BFD_RELOC_VAX_JMP_SLOT,
|
||||
BFD_RELOC_VAX_RELATIVE,
|
||||
|
||||
/* msp430 specific relocation codes */
|
||||
BFD_RELOC_MSP430_10_PCREL,
|
||||
BFD_RELOC_MSP430_16_PCREL,
|
||||
BFD_RELOC_MSP430_16,
|
||||
BFD_RELOC_MSP430_16_PCREL_BYTE,
|
||||
BFD_RELOC_MSP430_16_BYTE,
|
||||
BFD_RELOC_UNUSED };
|
||||
typedef enum bfd_reloc_code_real bfd_reloc_code_real_type;
|
||||
reloc_howto_type *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue