Hello user process
This commit is contained in:
26
user/arch/x86_64/link.ld
Normal file
26
user/arch/x86_64/link.ld
Normal file
@ -0,0 +1,26 @@
|
||||
ENTRY(_start)
|
||||
|
||||
SECTIONS {
|
||||
/* . = 0xffff000000000000; */
|
||||
. = 0x0000000000000000;
|
||||
|
||||
.rodata ALIGN(4K):
|
||||
{
|
||||
*(.rodata .rodata.*)
|
||||
}
|
||||
|
||||
.text ALIGN(4K):
|
||||
{
|
||||
*(.text .text.*)
|
||||
}
|
||||
|
||||
.data ALIGN(4K):
|
||||
{
|
||||
*(.data .data.*)
|
||||
}
|
||||
|
||||
.bss ALIGN(4K):
|
||||
{
|
||||
*(.bss .bss.*)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user