Building a multiboot 1 compatible executable
This commit is contained in:
11
src/kernel/Link.ld
Normal file
11
src/kernel/Link.ld
Normal file
@@ -0,0 +1,11 @@
|
||||
ENTRY(_start)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.text : AT(ADDR(.text))
|
||||
{
|
||||
*(.multiboot)
|
||||
*(.text)
|
||||
. = ALIGN(4096);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user