Contenido>Indice>Intro Instrucciones


Instrucción: MOV
Función: Movimiento de bit
Sintaxis: MOV bit1,bit2

Instrucción Código de Operación Byte 2º Bytes Ciclos Flags
MOV C,bit 0xA2 bit 2 1 C
MOV bit,C

0x92

bit 2 2 -

Operación: MOV bit1,bit2

(bit1)<= (bit2)

Descripción: Mueve (copia) el valor del bit2 en el bit1, el contenido de bit2 no resulta afectado. Uno de los operandos es siempre el bit C.

Véase también: ORL C    


  Contenido>Indice>Intro Instrucciones