summaryrefslogtreecommitdiff
path: root/gas/config/tc-m68hc11.h
diff options
context:
space:
mode:
authorStephane Carrez <stcarrez@nerim.fr>2002-06-29 10:32:34 +0000
committerStephane Carrez <stcarrez@nerim.fr>2002-06-29 10:32:34 +0000
commit38b0f315c3e26f2c2c17ff68dda95025174d41a4 (patch)
tree402739fdd684ceb02c8f4602e5fbbb59f845f65d /gas/config/tc-m68hc11.h
parentc74e0879f04b681544cfec33bdaf99903cc39e7f (diff)
downloadbinutils-redhat-38b0f315c3e26f2c2c17ff68dda95025174d41a4.tar.gz
* config/tc-m68hc11.h (ELF_TC_SPECIAL_SECTIONS): New sections
.softregs and .eeprom.
Diffstat (limited to 'gas/config/tc-m68hc11.h')
-rw-r--r--gas/config/tc-m68hc11.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/config/tc-m68hc11.h b/gas/config/tc-m68hc11.h
index de58c35f5a..a1300098c6 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 },