diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2002-06-29 10:32:34 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2002-06-29 10:32:34 +0000 |
commit | 96e8741728f0825f7e7b903e66d0c9cc00dc2eb2 (patch) | |
tree | ef8d168b1db0f680bec51be17205c7367b9f13ec /gas | |
parent | 83518699b9d45a5fcb1ae03809dfd26cdbb61685 (diff) | |
download | gdb-96e8741728f0825f7e7b903e66d0c9cc00dc2eb2.zip gdb-96e8741728f0825f7e7b903e66d0c9cc00dc2eb2.tar.gz gdb-96e8741728f0825f7e7b903e66d0c9cc00dc2eb2.tar.bz2 |
* config/tc-m68hc11.h (ELF_TC_SPECIAL_SECTIONS): New sections
.softregs and .eeprom.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-m68hc11.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e572f0b..2abcb53 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-06-29 Stephane Carrez <stcarrez@nerim.fr> + + * config/tc-m68hc11.h (ELF_TC_SPECIAL_SECTIONS): New sections + .softregs and .eeprom. + 2002-06-28 David O'Brien <obrien@FreeBSD.org> * NEWS: Note the next release is 2.13. diff --git a/gas/config/tc-m68hc11.h b/gas/config/tc-m68hc11.h index de58c35..a130009 100644 --- a/gas/config/tc-m68hc11.h +++ b/gas/config/tc-m68hc11.h @@ -1,5 +1,5 @@ /* tc-m68hc11.h -- Header file for tc-m68hc11.c. - Copyright 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -60,6 +60,8 @@ extern const char *m68hc11_arch_format PARAMS ((void)); - The .vectors is the data section that represents the interrupt vectors. */ #define ELF_TC_SPECIAL_SECTIONS \ + { ".eeprom", SHT_PROGBITS, SHF_ALLOC + SHF_WRITE }, \ + { ".softregs",SHT_NOBITS, SHF_ALLOC + SHF_WRITE }, \ { ".page0", SHT_PROGBITS, SHF_ALLOC + SHF_WRITE }, \ { ".vectors", SHT_PROGBITS, SHF_ALLOC + SHF_WRITE }, |