Last active
July 4, 2022 01:16
-
-
Save zid/86fc880c66e10a4aa560002fa4e03b63 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OUTPUT_FORMAT("binary") | |
ENTRY("start") | |
SECTIONS | |
{ | |
. = 0x7e00; | |
.text : | |
{ | |
boot.o (.text); | |
* (.text.startup); | |
* (.text*); | |
* (.data*); | |
* (.rodata*); | |
* (.bss*); | |
} | |
} | |
boot.asm: | |
global start | |
extern k_main | |
section .text | |
start: | |
jmp k_main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment