Subversion Repositories Kolibri OS

Rev

Rev 4556 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4556 Albom 1
/*OUTPUT_FORMAT("binary")*/
2
ENTRY(Start)
3
SECTIONS
4
{
5
  .text 0x000000:
6
   {
7
    *(.text)
8
   }
9
 
10
  .data : {
11
    *(.data)
12
    hEnd = . ;
13
   }
14
 
15
  .bss :
16
   {
17
    *(.bss)
18
   }
19
   Memory = . ;
5098 clevermous 20
   /DISCARD/ : {
21
    *(.comment)
22
    *(.drectve)
23
   }
4556 Albom 24
}