this is working pretty well right now
This commit is contained in:
9
BUGS/linker.ld
Normal file
9
BUGS/linker.ld
Normal file
@@ -0,0 +1,9 @@
|
||||
ENTRY(_start)
|
||||
SECTIONS
|
||||
{
|
||||
. = 1M; /* Standard load address for kernels */
|
||||
.text BLOCK(4K) : ALIGN(4K) { *(.multiboot) *(.text) }
|
||||
.rodata BLOCK(4K) : ALIGN(4K) { *(.rodata) }
|
||||
.data BLOCK(4K) : ALIGN(4K) { *(.data) }
|
||||
.bss BLOCK(4K) : ALIGN(4K) { *(COMMON) *(.bss) }
|
||||
}
|
||||
Reference in New Issue
Block a user