Merge branch 'main' of git.disroot.org:dvonik/omos-tcnj2024

idk
This commit is contained in:
spikey 2024-02-17 17:54:01 -05:00
commit 320ba3dcfd
1 changed files with 9 additions and 0 deletions

9
boot/link.ld Normal file
View File

@ -0,0 +1,9 @@
OUTPUT_FORMAT(elf32-i386)
ENTRY(_start)
SECTIONS
{
. = 0x100000;
.text : {*(.text)}
.data : {*(.data)}
.bss : {*(.bss)}
}