Subversion Repositories Kolibri OS

Rev

Rev 1814 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  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 = . ;
  20.    /DISCARD/ : {
  21.     *(.comment)
  22.     *(.drectve)
  23.    }
  24. }
  25.