Diferencia entre revisiones de «Juego de Instrucciones del AMD 29203»

De Wiki Asqueados
Saltar a: navegación, buscar
Línea 47: Línea 47:
  
 
<tr>
 
<tr>
==Logicas==
+
    <td colspan="5" style="background-color: orange">
AND <- Y <- 08
+
        <center><b>Logicas</b></center>
OR <- O <- 07
+
    </td>
XOR <- EXCLUSIVE OR <- 09
 
NOR <- NOR <- 10
 
NAND <- NAND <- 11
 
NOT <- NOT <- 12
 
 
</tr>
 
</tr>
 +
 +
<tr>
 +
<td><b>INSTRUCCION</b></td><td><b>DESCRIPCION</b></td><td><b>CODIGO</b></td><td><b>STATUS</b></td>
 +
</tr>
 +
 +
<tr>
 +
</tr>
 +
 +
<tr>
 +
<td>OR</td><td>O</td><td>7</td><td>&nbsp;</td>
 +
</tr>
 +
<tr>
 +
<td>AND</td><td>Y</td><td>8</td><td>&nbsp;</td>
 +
</tr>
 +
<tr>
 +
<td>XOR</td><td>OR EXCLUSIVO</td><td>9</td><td>&nbsp;</td>
 +
</tr>
 +
<tr>
 +
<td>NOR</td><td>NO O</td><td>10</td><td>&nbsp;</td>
 +
</tr>
 +
<tr>
 +
<td>NAND</td><td>NO Y</td><td>11</td><td>&nbsp;</td>
 +
</tr>
 +
<tr>
 +
<td>NOT</td><td>NO</td><td>12</td><td>&nbsp;</td>
 +
</tr>
 +
 +
<tr><td colspan="5" style="border: 0px">&nbsp;</td></tr>
  
 
<tr>
 
<tr>

Revisión del 03:19 24 nov 2005



Salto

JNZ <- JUMP IF NOT ZERO <- 31 JZ <- JUMP IF ZERO <- 32 JNE <- JUMP IF NOT EQUAL <- 33 JE <- JUMP IF EQUAL <- 34

Carga

LDM <- CARGA EN MEMORIA <- 40 LDR <- CARGA EN REGISTRO <- 41

Desplazamiento

SL <- DESPLAZAMIENTO IZQUIERDA <- 51 SR <- DESPLAZAMIENTO DERECHA <- 52 RL <- ROTACION IZQUIERDA <- 53 RR <- ROTACION DERECHA <- 54

Repertorio de Instrucciones
 
Aritmeticas
INSTRUCCIONDESCRIPCIONCODIGOSTATUS
ADDSUMA21 
SUBRESTA22 
MULMULTIPLICACION23 
DIVDIVISION24 
 
Logicas
INSTRUCCIONDESCRIPCIONCODIGOSTATUS
ORO7 
ANDY8 
XOROR EXCLUSIVO9 
NORNO O10 
NANDNO Y11 
NOTNO12