]> Git Repo - binutils.git/blob - ld/news.sc
Bugfix rfe and stbrx instrucionts.
[binutils.git] / ld / news.sc
1 OUTPUT_FORMAT("a.out-newsos3")
2 OUTPUT_ARCH(m68k)
3
4 SEARCH_DIR(/lib)                        
5 SEARCH_DIR(/usr/lib)                    
6 SEARCH_DIR(/usr/local/lib)              
7 __DYNAMIC  =  0;                                
8 SECTIONS                                
9 {                                       
10   .text 0:
11   {                                     
12    CREATE_OBJECT_SYMBOLS                
13     *(.text)                            
14     _etext  =  ALIGN(0x1000);
15     }
16   .data  ALIGN(0x1000) :                
17   {                                     
18     *(.data)                            
19       CONSTRUCTORS;
20       _edata  =  .;                     
21   }                                     
22   .bss   SIZEOF(.data) + ADDR(.data) :  
23   {                                     
24    *(.bss)                              
25    [COMMON]                             
26      _end = .;
27      __end = .;
28   }                                     
29 }
30
This page took 0.02434 seconds and 4 git commands to generate.