cos2000v1/lib/lib.asm

17 lines
170 B
NASM
Raw Normal View History

include "..\include\mem.h"
include "..\include\divers.h"
2004-11-19 23:13:24 +01:00
org 0h
2004-11-19 23:13:24 +01:00
start:
2019-07-09 18:30:00 +02:00
header exe 1
2004-11-19 23:13:24 +01:00
waitkey:
mov ax,0
int 16h
retf
2004-11-19 23:13:24 +01:00
exporting
declare waitkey
ende