Add a linker script

master
Philipp Oppermann 8 years ago
parent 3a05ccd994
commit 0fddc38436

@ -0,0 +1,16 @@
ENTRY(start)
SECTIONS {
. = 1M;
.boot :
{
/* ensure that the multiboot header is at the beginning */
*(.multiboot_header)
}
.text :
{
*(.text)
}
}
Loading…
Cancel
Save