1*3d8817e4Smiod /* coff information for Texas Instruments TMS320C3X 2*3d8817e4Smiod 3*3d8817e4Smiod Copyright 2001 Free Software Foundation, Inc. 4*3d8817e4Smiod 5*3d8817e4Smiod This program is free software; you can redistribute it and/or modify 6*3d8817e4Smiod it under the terms of the GNU General Public License as published by 7*3d8817e4Smiod the Free Software Foundation; either version 2 of the License, or 8*3d8817e4Smiod (at your option) any later version. 9*3d8817e4Smiod 10*3d8817e4Smiod This program is distributed in the hope that it will be useful, 11*3d8817e4Smiod but WITHOUT ANY WARRANTY; without even the implied warranty of 12*3d8817e4Smiod MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*3d8817e4Smiod GNU General Public License for more details. 14*3d8817e4Smiod 15*3d8817e4Smiod You should have received a copy of the GNU General Public License 16*3d8817e4Smiod along with this program; if not, write to the Free Software 17*3d8817e4Smiod Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ 18*3d8817e4Smiod 19*3d8817e4Smiod #define L_LNNO_SIZE 4 20*3d8817e4Smiod #include "coff/external.h" 21*3d8817e4Smiod 22*3d8817e4Smiod #define TIC30MAGIC 0xC000 23*3d8817e4Smiod 24*3d8817e4Smiod #define TIC30BADMAG(x) (((x).f_magic != TIC30MAGIC)) 25*3d8817e4Smiod 26*3d8817e4Smiod /********************** RELOCATION DIRECTIVES **********************/ 27*3d8817e4Smiod 28*3d8817e4Smiod /* The external reloc has an offset field, because some of the reloc 29*3d8817e4Smiod types on the z8k don't have room in the instruction for the entire 30*3d8817e4Smiod offset - eg with segments */ 31*3d8817e4Smiod 32*3d8817e4Smiod struct external_reloc 33*3d8817e4Smiod { 34*3d8817e4Smiod char r_vaddr[4]; 35*3d8817e4Smiod char r_symndx[4]; 36*3d8817e4Smiod char r_offset[4]; 37*3d8817e4Smiod char r_type[2]; 38*3d8817e4Smiod char r_stuff[2]; 39*3d8817e4Smiod }; 40*3d8817e4Smiod 41*3d8817e4Smiod #define RELOC struct external_reloc 42*3d8817e4Smiod #define RELSZ 16 43*3d8817e4Smiod 44*3d8817e4Smiod /* TMS320C30 relocation types. */ 45*3d8817e4Smiod 46*3d8817e4Smiod #define R_TIC30_ABS16 0x100 /* 16 bit absolute. */ 47*3d8817e4Smiod #define R_TIC30_ABS24 0x101 /* 24 bit absolute. */ 48*3d8817e4Smiod #define R_TIC30_ABS32 0x102 /* 32 bit absolute. */ 49*3d8817e4Smiod #define R_TIC30_LDP 0x103 /* LDP bits 23-16 to 7-0. */ 50*3d8817e4Smiod #define R_TIC30_PC16 0x104 /* 16 bit pc relative. */ 51