StupidOS/kernel/kernel.asm
d0p1 🏳️‍⚧️ 4acbdade68
Some checks failed
Build / test (push) Has been cancelled
Docs / test (push) Has been cancelled
build: docs + website
2024-03-26 08:39:40 +01:00

20 lines
143 B
NASM

;; File: kernel.asm
include 'const.inc'
org KBASE
use32
jmp kmain
include 'mm/mm.inc'
kmain:
nop
_edata:
; BSS
rb 0x4000
_end: