Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ENTRY(_start)
- __stack_core_0 = 0x160000 - 0x10000;
- __stack_core_1 = 0x160000 - 0x20000;
- __stack_core_2 = 0x160000 - 0x30000;
- __stack_core_3 = 0x160000 - 0x40000;
- SECTIONS
- {
- . = 0x160000;
- __start = .;
- __text_start = .;
- .text :
- {
- KEEP(*(.text.boot))
- *(.text)
- }
- . = ALIGN(4096);
- .user :
- {
- __user_process_start = .;
- /home/phil/dev/os/build/objects_kernel/user.o (.text.*)
- /home/phil/dev/os/build/objects_kernel/user.o (.data)
- /home/phil/dev/os/build/objects_kernel/user.o (.rodata)
- /home/phil/dev/os/build/objects_kernel/user.o (.bss)
- __user_process_end = .;
- }
- . = ALIGN(4096);
- __rodata_start = .;
- .rodata :
- {
- *(.rodata)
- }
- . = ALIGN(4096);
- __rodata_end = .;
- __data_start = .;
- .data :
- {
- *(.data)
- }
- . = ALIGN(4096);
- __data_end = .;
- __bss_start = .;
- .bss :
- {
- bss = .;
- *(.bss)
- }
- . = ALIGN(4096);
- __bss_end = .;
- __bss_size = __bss_end - __bss_start;
- . = ALIGN(4096);
- __end = .;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement