Mon Nov 25 18:28:40 1991 Steve Chamberlain (sac at cygnus.com)
authorSteve Chamberlain <sac@cygnus>
Tue, 26 Nov 1991 02:29:18 +0000 (02:29 +0000)
committerSteve Chamberlain <sac@cygnus>
Tue, 26 Nov 1991 02:29:18 +0000 (02:29 +0000)
* config.h: h8 is now coff, not ieee
* h8300hds.sc: reflect the same

ld/config.h
ld/h8300hds.sc

index 98c5cf3affd8c679a6ef94c0243655e600bd5128..838276bd8ac4589a7429f151a928eec085db5041 100644 (file)
@@ -53,7 +53,7 @@
 #define GLD29K_TARGET "coff-a29k-big"
 #define GLDI386AOUT_TARGET "a.out-i386"
 #define GLDNEWS_TARGET "a.out-newsos3"
-#define H8300HDS_TARGET "ieee"
+#define H8300HDS_TARGET "coff-h8300"
 #define EBMON29K_TARGET "coff-a29k-big"
 
 
index 9a395dd885b650376f64925773f1b0b0e36a7b33..d0a139b06a089d355460dadafd5a5d7ba98fbe1e 100755 (executable)
@@ -1,19 +1,22 @@
-OUTPUT_FORMAT("ieee")
+OUTPUT_FORMAT("coff-h8300")
 OUTPUT_ARCH(h8300)
 
 SECTIONS                               
 {                                      
-  .code 40:
-  {                                    
-
-    *(.code)                           
-   *(.strings)
-    }
-  .bss . :
-  {                                    
-   *(.bss)                             
-   [COMMON]                            
-     _end = .;                         
-    }                                  
+.text 0:
+       {                                       
+         *(.text)                              
+         *(.strings)
+       }
+.data . :
+       {
+       *(.data)
+       }
+.bss . :
+       {                                       
+       *(.bss)                         
+       [COMMON]                                
+        _end = .;                              
+       }                                       
 }