init
This commit is contained in:
commit
2190a5c04d
18 changed files with 745 additions and 0 deletions
12
linker.ld
Normal file
12
linker.ld
Normal file
|
@ -0,0 +1,12 @@
|
|||
ENTRY(start)
|
||||
SECTIONS {
|
||||
. = 1M;
|
||||
.boot :
|
||||
{
|
||||
KEEP(*(.multiboot_header))
|
||||
}
|
||||
.text :
|
||||
{
|
||||
*(.text)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue