2007-03-23 17:52:11 +01:00
|
|
|
model tiny,stdcall
|
|
|
|
p586N
|
|
|
|
locals
|
|
|
|
jumps
|
|
|
|
codeseg
|
|
|
|
option procalign:byte
|
|
|
|
|
|
|
|
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:
|
2007-03-23 17:52:11 +01:00
|
|
|
header exe <"CE",1,0,0,,offset imports,,offset realstart>
|
2004-11-19 23:13:10 +01:00
|
|
|
|
|
|
|
realstart:
|
2007-03-23 17:52:11 +01:00
|
|
|
call [print],offset message
|
|
|
|
call [waitkey]
|
|
|
|
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
|
|
|
|
use EXEM-LIB.LIB,waitkey
|
|
|
|
endi
|