Bootloader do some directory restructuring

This commit is contained in:
2023-11-18 13:59:45 +02:00
parent c9e9cfd361
commit cd646a1ab7
13 changed files with 20 additions and 19 deletions

15
bootloader/bios/linker.ld Normal file
View File

@@ -0,0 +1,15 @@
ENTRY(stage1_main)
SECTIONS
{
. = 0x7C00;
.stage1 : { *(.stage1) }
. = ALIGN(512);
stage2_start = .;
.stage2 : { *(.stage2) }
stage2_end = .;
. = ALIGN(512);
.bss : { *(.bss) }
}