StupidOS/kernel/kernel.asm

20 lines
143 B
NASM
Raw Normal View History

2024-03-26 07:39:40 +00:00
;; File: kernel.asm
include 'const.inc'
2024-03-20 15:51:27 +00:00
2024-03-26 07:39:40 +00:00
org KBASE
use32
2024-03-20 15:51:27 +00:00
jmp kmain
2024-03-26 07:39:40 +00:00
include 'mm/mm.inc'
2024-03-20 15:51:27 +00:00
kmain:
nop
_edata:
; BSS
rb 0x4000
_end: