2004-06-12 23:34:04 +02:00
|
|
|
.model tiny
|
|
|
|
.486
|
|
|
|
smart
|
|
|
|
.code
|
|
|
|
|
2004-11-19 18:23:06 +01:00
|
|
|
org 0h
|
2004-06-12 23:34:04 +02:00
|
|
|
|
2004-11-23 01:43:29 +01:00
|
|
|
include ..\include\mem.h
|
|
|
|
|
2004-06-12 23:34:04 +02:00
|
|
|
start:
|
2004-11-23 01:43:29 +01:00
|
|
|
header exe <,1,0,,,offset imports,,>
|
|
|
|
|
|
|
|
realstart:
|
2004-06-12 23:34:04 +02:00
|
|
|
mov ah,2
|
|
|
|
int 74h
|
2004-11-23 01:43:29 +01:00
|
|
|
push offset message
|
|
|
|
call [print]
|
|
|
|
retf
|
2004-06-12 23:34:04 +02:00
|
|
|
|
2004-11-13 10:05:35 +01:00
|
|
|
message db 'Activation de la souris',0
|
2004-11-23 01:43:29 +01:00
|
|
|
|
|
|
|
imports:
|
|
|
|
db "VIDEO.LIB::print",0
|
|
|
|
print dd 0
|
|
|
|
dw 0
|
|
|
|
|
2004-06-12 23:34:04 +02:00
|
|
|
end start
|