Migrated first 6 gists.
This commit is contained in:
9
kernel.c/link.ld
Normal file
9
kernel.c/link.ld
Normal file
@@ -0,0 +1,9 @@
|
||||
OUTPUT_FORMAT(elf32-i386)
|
||||
ENTRY(start)
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x100000;
|
||||
.text : { *(.text) }
|
||||
.data : { *(.data) }
|
||||
.bss : { *(.bss) }
|
||||
}
|
||||
Reference in New Issue
Block a user