cos2000v1/programs/exem.asm

21 lines
308 B
NASM
Raw Normal View History

include "..\include\mem.h"
include "..\include\divers.h"
org 0h
start:
2019-07-09 18:30:00 +02:00
header exe 1
realstart:
2019-07-09 18:30:00 +02:00
invoke print,message
invoke waitkey
retf
message db 'Appel de la librairie \c02video\c07 et de la librairie \c02EXEM-LIB.LIB\c07 !',0
importing
use VIDEO.LIB,print
2019-07-09 18:30:00 +02:00
use LIB.LIB,waitkey
endi