Skip to content

Instantly share code, notes, and snippets.

@zid
Last active July 4, 2022 01:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zid/86fc880c66e10a4aa560002fa4e03b63 to your computer and use it in GitHub Desktop.
Save zid/86fc880c66e10a4aa560002fa4e03b63 to your computer and use it in GitHub Desktop.
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