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