Skip to content

Instantly share code, notes, and snippets.

View Gab098's full-sized avatar
🤒
Out sick

smokey (like nagata) Gab098

🤒
Out sick
  • lala land
View GitHub Profile
section .text
bits 32 ; GRUB starts us in 32-bit protected mode
; Aligns the machine code to a 4-byte boundary
align 4
; Makes the `start` symbol visible to the linker
global start
extern kmain ; kmain is defined in our C code