Guest User

Untitled

a guest
Aug 10th, 2018
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. OUTPUT_FORMAT ("binary")
  2.  
  3. MEMORY {
  4. loader_section : ORIGIN = 0x80001800, LENGTH = 0x1800
  5. }
  6.  
  7. SECTIONS {
  8. .text : {
  9. FILL (0)
  10.  
  11. __text_start = . ;
  12. *(.init)
  13. *(.text)
  14. *(.ctors)
  15. *(.dtors)
  16. *(.rodata)
  17. /**(.sdata)*/
  18. *(.data)
  19. /**(.sbss)*/
  20. *(.bss)
  21. *(.fini)
  22. *(.rodata.*)
  23. __text_end = . ;
  24. }
  25. }
Add Comment
Please, Sign In to add comment