diff --git a/programs/souris.asm b/programs/souris.asm index 2890412..30c92fc 100644 --- a/programs/souris.asm +++ b/programs/souris.asm @@ -6,8 +6,12 @@ smart org 0100h start: +mov si,offset message +mov ah,13 +int 47h mov ah,2 int 74h db 0CBh +message db 'Activation de la souris',0 end start