Bootloader do some directory restructuring
This commit is contained in:
15
bootloader/bios/linker.ld
Normal file
15
bootloader/bios/linker.ld
Normal file
@@ -0,0 +1,15 @@
|
||||
ENTRY(stage1_main)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x7C00;
|
||||
.stage1 : { *(.stage1) }
|
||||
|
||||
. = ALIGN(512);
|
||||
stage2_start = .;
|
||||
.stage2 : { *(.stage2) }
|
||||
stage2_end = .;
|
||||
|
||||
. = ALIGN(512);
|
||||
.bss : { *(.bss) }
|
||||
}
|
||||
Reference in New Issue
Block a user