Advertisement
Guest User

sl.lnk

a guest
Feb 8th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. SECTIONS {
  2. SLSTART 0x06004000 :
  3. {
  4. ___Start = .;
  5. *( SLSTART )
  6. }
  7. .text ALIGN( 0x20 ) :
  8. {
  9. *( .text )
  10. *( .strings )
  11. __etext = .;
  12. }
  13. SLPROG ALIGN( 0x20 ) :
  14. {
  15. __slprog_start = .;
  16. *( SLPROG )
  17. __slprog_end = .;
  18. }
  19. .tors ALIGN( 0x10 ) :
  20. {
  21. ___ctors = .;
  22. *( .ctors )
  23. ___ctors_end = .;
  24. ___dtors = .;
  25. *( .dtors )
  26. ___dtors_end = .;
  27. }
  28. .data ALIGN( 0x10 ):
  29. {
  30. *( .data )
  31. __edata = .;
  32. }
  33. .rodate ALIGN( 0x10 ):
  34. {
  35. *( .rodata )
  36. }
  37. .bss ALIGN( 0x10 ) ( NOLOAD ):
  38. {
  39. __BSSStart = .;
  40. *( .bss )
  41. *( COMMON )
  42. __BSSEnd = .;
  43. }
  44. .comment ALIGN( 0x10 ) ( NOLOAD ):
  45. {
  46. _end = .;
  47. }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement