Advertisement
ZirconiumX

Untitled

Nov 3rd, 2018
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ENTRY(_start);
  2.  
  3. SECTIONS {
  4. /* The .text segment contains the executable machine code. */
  5. .text 0x00100000: {
  6. *(.text.4095);
  7. *(.text .text.*);
  8. } > USER_MEM
  9.  
  10. /* The .rodata segment contains constant globals. */
  11. .rodata ALIGN(128) : {
  12. *(.rodata .rodata.*);
  13. } > USER_MEM
  14.  
  15. /* The .data segment contains mutable globals initialised with a non-zero value. */
  16. .data ALIGN(128) : {
  17. *(.data .data.*);
  18. } > USER_MEM
  19.  
  20. /* The .bss segment contains mutable globals initialised with a zero value. */
  21. .bss ALIGN(128) : {
  22. START_OF_BSS = .;
  23. *(.bss .bss.*);
  24. END_OF_BSS = .;
  25. } > USER_MEM
  26.  
  27. PROVIDE(END_OF_RAM = 0x02000000);
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement