2007-03-23 17:52:11 +01:00
|
|
|
|
|
|
|
include "..\include\mem.h"
|
|
|
|
include "..\include\divers.h"
|
2004-11-19 23:13:10 +01:00
|
|
|
|
2007-03-23 17:52:11 +01:00
|
|
|
org 0h
|
2004-11-19 23:13:10 +01:00
|
|
|
|
|
|
|
start:
|
2019-07-09 18:30:00 +02:00
|
|
|
header exe 1
|
2004-11-19 23:13:10 +01:00
|
|
|
|
|
|
|
realstart:
|
2019-07-09 18:30:00 +02:00
|
|
|
invoke print,message
|
|
|
|
invoke waitkey
|
2007-03-23 17:52:11 +01:00
|
|
|
retf
|
2004-11-19 23:13:10 +01:00
|
|
|
|
2007-03-23 17:52:11 +01:00
|
|
|
message db 'Appel de la librairie \c02video\c07 et de la librairie \c02EXEM-LIB.LIB\c07 !',0
|
2004-11-19 23:13:10 +01:00
|
|
|
|
2007-03-23 17:52:11 +01:00
|
|
|
importing
|
|
|
|
use VIDEO.LIB,print
|
2019-07-09 18:30:00 +02:00
|
|
|
use LIB.LIB,waitkey
|
2007-03-23 17:52:11 +01:00
|
|
|
endi
|