CoolPotOS/apps/libs/syscall.asm

16 lines
181 B
NASM

global put_char
global debug_test
put_char:
push eax
mov eax,0x01
int 31h
pop eax
ret
debug_test:
push edx
mov edx,0x02
int 31h
pop edx
ret