rdos/main.asm

14 lines
166 B
NASM
Raw Normal View History

2019-03-10 20:23:09 +01:00
cpu 8086
org 0x0100
jmp main
main:
call mm_print
ret
%include "kprintf.asm"
; mem MUST be last because it will write after it
%include "mem.asm"