~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Bochs x86 Emulator
bochs/bios/rombios32.ld

Version: ~ [ 2.3.5 ] ~ [ 2.3 ] ~

  1 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
  2 OUTPUT_ARCH(i386)
  3 ENTRY(_start);
  4 SECTIONS
  5 {
  6         . = 0x00040000;
  7         .text     : { *(.text)    } 
  8         .rodata    : { *(.rodata) }
  9         . = ALIGN(4096);
 10         .data     : { *(.data)    } 
 11         __bss_start = . ;
 12         .bss      : { *(.bss) *(COMMON) }
 13         _end = . ;
 14         /DISCARD/ : { *(.stab) 
 15                      *(.stabstr)
 16                      *(.comment)
 17                      *(.note)    
 18                   }
 19 }

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.