Instruction DEC:
Décrément.

Algorithme :

opérande = opérande - 1


Exemple :
	MOV AL, 255	; AL = 0FFh (255 or -1)
	DEC AL		; AL = 0FEh (254 or -2)
	RET 

Z S O P A
r r r r r
CF - inchangé !
Liste des instructions x86.