You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ldscript 422 B

123456789101112131415161718
  1. SECTIONS
  2. {
  3. . = 0x80000100;
  4. .text : { *(.text) }
  5. .data ALIGN(0x10): { *(.data) }
  6. .bss ALIGN(0x10): {
  7. __bss_start__ = ABSOLUTE(.);
  8. *(.bss)
  9. . += 0x100;
  10. }
  11. __bss_end__ = .;
  12. PROVIDE (__stack = .);
  13. _end = .;
  14. .debug_info 0 : { *(.debug_info) }
  15. .debug_abbrev 0 : { *(.debug_abbrev) }
  16. .debug_line 0 : { *(.debug_line) }
  17. .debug_frame 0 : { *(.debug_frame) }
  18. }