rdos/main.asm

18 lines
239 B
NASM
Raw Normal View History

2019-03-10 20:23:09 +01:00
cpu 8086
org 0x0100
jmp main
main:
mov ax,0x1000
mov bx,0x0000
mov cx,0x0800
call mtab_set
call mtab_dump
2019-03-10 20:23:09 +01:00
ret
%include "kprintf.asm"
; mem MUST be last because it will write after itself
2019-03-10 20:23:09 +01:00
%include "mem.asm"