StupidOS/kernel/kernel.asm

19 lines
174 B
NASM
Raw Normal View History

INCLUDE 'const.inc'
ORG KBASE
USE32
jmp kmain
INCLUDE 'mm/mm.inc'
kmain:
nop
_edata:
; BSS
rb 0x4000
_end: