flat.lds 384 B

123456789101112131415161718192021
  1. SECTIONS
  2. {
  3. . = 4M + SIZEOF_HEADERS;
  4. stext = .;
  5. .text : { *(.init) *(.text) *(.text.*) }
  6. . = ALIGN(4K);
  7. .data : {
  8. *(.data)
  9. exception_table_start = .;
  10. *(.data.ex)
  11. exception_table_end = .;
  12. }
  13. . = ALIGN(16);
  14. .rodata : { *(.rodata) }
  15. . = ALIGN(16);
  16. .bss : { *(.bss) }
  17. . = ALIGN(4K);
  18. edata = .;
  19. }
  20. ENTRY(start)