Archived
Private
Public Access
1
0

Added OS-Project

This commit is contained in:
2022-09-04 20:44:07 +02:00
parent 2cdae71f61
commit 5af64b7a59
13 changed files with 359 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
ENTRY(start)
SECTIONS
{
. = 1M;
.boot :
{
KEEP(*(.multiboot_header))
}
.text :
{
*(.text)
}
}