Created
May 20, 2013 10:53
-
-
Save anonymous/5611599 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
negative: | |
MOV EBX, [ESP+8] | |
MOV ECX,[ESP+12]; je suppose que ESP a récupéré les paramètres donnés en c++ | |
MOVZX AX, EBX; comme je comprends rien, je place la valeur du registre AX => ECX | |
boucle : | |
MOV AX, [A+ECX*2-2]; je suppose que ça lit la matrice et que je place le NOT(mat[i][j]) | |
NOT AX | |
LOOP boucle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment