Advertisement
Guest User

Untitled

a guest
Jan 24th, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. ENTRY(_start)
  2.  
  3.  
  4. __stack_core_0 = 0x160000 - 0x10000;
  5. __stack_core_1 = 0x160000 - 0x20000;
  6. __stack_core_2 = 0x160000 - 0x30000;
  7. __stack_core_3 = 0x160000 - 0x40000;
  8.  
  9. SECTIONS
  10. {
  11.  
  12. . = 0x160000;
  13. __start = .;
  14. __text_start = .;
  15. .text :
  16. {
  17. KEEP(*(.text.boot))
  18. *(.text)
  19. }
  20. . = ALIGN(4096);
  21. .user :
  22. {
  23. __user_process_start = .;
  24. /home/phil/dev/os/build/objects_kernel/user.o (.text.*)
  25. /home/phil/dev/os/build/objects_kernel/user.o (.data)
  26. /home/phil/dev/os/build/objects_kernel/user.o (.rodata)
  27. /home/phil/dev/os/build/objects_kernel/user.o (.bss)
  28. __user_process_end = .;
  29. }
  30. . = ALIGN(4096);
  31.  
  32.  
  33. __rodata_start = .;
  34. .rodata :
  35. {
  36. *(.rodata)
  37. }
  38. . = ALIGN(4096);
  39. __rodata_end = .;
  40.  
  41. __data_start = .;
  42. .data :
  43. {
  44. *(.data)
  45. }
  46. . = ALIGN(4096);
  47. __data_end = .;
  48. __bss_start = .;
  49. .bss :
  50. {
  51. bss = .;
  52. *(.bss)
  53. }
  54.  
  55. . = ALIGN(4096);
  56. __bss_end = .;
  57. __bss_size = __bss_end - __bss_start;
  58.  
  59. . = ALIGN(4096);
  60.  
  61. __end = .;
  62. }
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement