Mon Nov 25 18:28:40 1991 Steve Chamberlain (sac at cygnus.com)

* config.h: h8 is now coff, not ieee
	* h8300hds.sc: reflect the same
This commit is contained in:
Steve Chamberlain 1991-11-26 02:29:18 +00:00
parent 05b4b0e70c
commit cc5bda54de
2 changed files with 17 additions and 14 deletions

View File

@ -53,7 +53,7 @@
#define GLD29K_TARGET "coff-a29k-big" #define GLD29K_TARGET "coff-a29k-big"
#define GLDI386AOUT_TARGET "a.out-i386" #define GLDI386AOUT_TARGET "a.out-i386"
#define GLDNEWS_TARGET "a.out-newsos3" #define GLDNEWS_TARGET "a.out-newsos3"
#define H8300HDS_TARGET "ieee" #define H8300HDS_TARGET "coff-h8300"
#define EBMON29K_TARGET "coff-a29k-big" #define EBMON29K_TARGET "coff-a29k-big"

View File

@ -1,19 +1,22 @@
OUTPUT_FORMAT("ieee") OUTPUT_FORMAT("coff-h8300")
OUTPUT_ARCH(h8300) OUTPUT_ARCH(h8300)
SECTIONS SECTIONS
{ {
.code 40: .text 0:
{ {
*(.text)
*(.code) *(.strings)
*(.strings) }
} .data . :
.bss . : {
{ *(.data)
*(.bss) }
[COMMON] .bss . :
_end = .; {
} *(.bss)
[COMMON]
_end = .;
}
} }