Guest User

Untitled

a guest
May 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. ENTRY(_start)
  2.  
  3. SECTIONS {
  4. . = 0x100000;
  5. start = .;
  6.  
  7. .debug_info ALIGN (0x1000) : {
  8. debug_info_start = .;
  9. *(.debug_info)
  10. debug_info_end = .;
  11. }
  12.  
  13. .text : ALIGN (0x1000) {
  14. *(.mboot)
  15. *(.text)
  16. }
  17.  
  18. .rodata ALIGN (0x1000) : {
  19. *(.rodata)
  20. }
  21.  
  22. .data ALIGN (0x1000) : {
  23. *(.data)
  24. }
  25.  
  26. .bss ALIGN (0x1000) : {
  27. sbss = .;
  28. *(COMMON)
  29. *(.bss)
  30. ebss = .;
  31. }
  32.  
  33. end = .;
  34. }
Add Comment
Please, Sign In to add comment