init version
This commit is contained in:
26
.cargo/linker-multiboot.ld
Normal file
26
.cargo/linker-multiboot.ld
Normal file
@@ -0,0 +1,26 @@
|
||||
ENTRY(start)
|
||||
|
||||
SECTIONS {
|
||||
. = 1M;
|
||||
|
||||
.boot : ALIGN(16) {
|
||||
KEEP(*(.multiboot2_header))
|
||||
}
|
||||
|
||||
.text ALIGN(4) : {
|
||||
*(.text*)
|
||||
}
|
||||
|
||||
.rodata ALIGN(4) : {
|
||||
*(.rodata*)
|
||||
}
|
||||
|
||||
.data ALIGN(4) : {
|
||||
*(.data*)
|
||||
}
|
||||
|
||||
.bss ALIGN(4) : {
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user