j'espere que le code suivant va t'aider , tout est commenté :
mov ah, 0h ; mode video 320*200 256 couleurs mov al, 13h int 10h
; Affichage d'un pixel au centre de l ecran mov ah, 0ch ; fonction afficher pixel mov cx, 160d ; colonne pixel mov dx, 100d ; ligne pixel mov al, 0bh ; couleur pixel mov bh, 0h ; page ecran int 10h ; affichage du resultat
mov ah, 0h ; attente une touche int 16h
voilà
|