diff options
author | Fred Fish <fnf@specifix.com> | 1996-12-29 17:56:24 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-12-29 17:56:24 +0000 |
commit | 5a608f5bf167e4f229ed43ce1a1208b29dd99332 (patch) | |
tree | 724972297c65c7e291996c2a8fcfec56db1b5709 /bfd/coffcode.h | |
parent | 0049ba7a8da103000966cea2776b179b2f66579a (diff) | |
download | gdb-5a608f5bf167e4f229ed43ce1a1208b29dd99332.zip gdb-5a608f5bf167e4f229ed43ce1a1208b29dd99332.tar.gz gdb-5a608f5bf167e4f229ed43ce1a1208b29dd99332.tar.bz2 |
* Makefile.in (BFD32_BACKENDS): Add coff-tic80.o
(ALL_MACHINES): Add cpu-tic80.o
(cpu-tic80.o, coff-tic80.o): Add dependencies.
* coff-tic80.c: Add skeleton, cloned from another coff config.
* coffcode.h (coff_write_object_contents): Set magic to TIC80MAGIC
for TIc80.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r-- | bfd/coffcode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 347854a..35fff51 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -2721,6 +2721,10 @@ coff_write_object_contents (abfd) internal_a.magic = NMAGIC; /* Assume separate i/d */ #define __A_MAGIC_SET__ #endif /* A29K */ +#ifdef TIC80 + internal_a.magic = TIC80MAGIC; +#define __A_MAGIC_SET__ +#endif /* TIC80 */ #ifdef I860 /* FIXME: What are the a.out magic numbers for the i860? */ internal_a.magic = 0; |