linker.ld 273 B

123456789101112131415161718192021222324
  1. ENTRY (loader)
  2. SECTIONS
  3. {
  4. . = 0x00100000;
  5. .mbheader : {
  6. *(.mbheader)
  7. }
  8. .text : {
  9. *(.text)
  10. }
  11. .rodata ALIGN (0x1000) : {
  12. *(.rodata)
  13. }
  14. .data ALIGN (0x1000) : {
  15. *(.data)
  16. }
  17. .bss : {
  18. sbss = .;
  19. *(COMMON)
  20. *(.bss)
  21. ebss = .;
  22. }
  23. }