StupidOS/kernel/kernel.asm
d0p1 🏳️‍⚧️ 03c95cb0a4
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
chore: add 'coff.h' header
2024-03-20 16:51:27 +01:00

19 lines
122 B
NASM

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