Opcodes Flashcards
Copy from source to destination
MOV
this instruction copies the contents of the source register into the destination register; the contents of the source register are not altered
MOV
Move immediate 8-bit
MVI
the 8bit data is stored in the destination register
MVI
Load accumulator
LDA
load accumulator indirect
LDAX
the contents of the designated register pair point to a memory location. this instruction copies the contents of that memory location into the accumulator
LDAX
Load register pair immediate
LXI
This instruction loads 16-bit data in the register designated in the operand
LXI
Load H and L registers direct
LHLD
Store accumulator direct
STA
Store H and L registers direct
SHLD
Exchange H and L with D and E
XCHG
Store H and L registers direct
SHLD
Copy H and L registers to the stack pointer
SPHL
Exchange H and L with top of stack
XTHL
Push register pair onto stack
PUSH
Pop off stack to register pair
POP
Output data from accumulator to a port with 8-bit address
OUT
Input data from accumulator to a port with 8-bit address
IN
Add register or memory to accumulator
ADD
Add register/memory to accumulator with carry
ADC
Add immediate to accumulator
ADI
Add immediate to accumulator with carry
ACI
Add register pair to H and L registers
DAD
Subtract register/memory from accumulator
SUB
Subtract source and borrow from accumulator
SBB
Subtract immediate from accumulator
SUI
Subtract immediate from accumulator with borrow
SBI
Increment register/memory by 1
INR
Increment register pair by 1
INX
Decrement register/memory by 1
DCR
Decrement register pair by 1
DCX
Decimal adjust accumulator
DAA
Jump unconditionally
JMP
jump on carry
JC
Jump on no carry
JNC
Jump on positive
JP
Jump on minus
JM
jump on zero
JZ
jump on no zero
JNZ
jump on parity even
JPE
jump on parity odd
JPO
unconditional subroutine call
CALL
call on carry
CC
call on no carry
CNC
call on positive
CP
call on minus
CM
Call on zero
CZ
call on no zero
CNZ
call on parity even
CPE
call on parity odd
CPO
Return from subroutine unconditionally
RET
return on carry
RC
return on no carry
RNC
return on positive
RP
return on minus
RM
return on zero
RZ
return on no zero
RNZ
Return on parity even
RPE
return on parity odd
RPO
Load program counter with HL contents
PCHL
Restart
RST
compare register/memory with accumulator
CMP
compare immediate with accumulator
CPI
logical AND register/memory with accumulator
ANA
logical AND immediate with accumulator
ANI
exclusive OR register/memory with accumulator
XRA
exclusive OR immediate with accumulator
XRI
logical OR register/memory wityh accumulator
ORA
Logical OR immediate with accumulator
ORI
Rotate accumulator left
RLC
Rotate accumulator right
RRC
each binary bit of accumulator is rotated left by one position
RLC
each binary bit of accumulator is rotated right by one position
RRC
rotate accumulator left through carry
RAL
rotate accumulator right through carry
RAR
each binary bit of accumulator is rotated right by one position through the carry flag
RAR
each binary bit of accumulator is rotated left by one position through the carry flag
RAL
Complement accumulator
CMA
complement carry
CMC
set carry
STC
No operation
NOP
halt and enter wait state
HLT
disable interrupts
DI
enable interrupts
EI
Read interrupt mask
RIM
Set interrupt mask
SIM
Serial Output Data
SOD
Serial data enable
SDE
don’t care
XXX
Reset RST 7.5
R7.5
Mask set enable
MSE
Restart address of instruction RST 0
0000H
Restart address of instruction RST 1
0008H
Restart address of instruction RST 2
0010H
Restart address of instruction RST 3
0018H
Restart address of instruction RST 4
0020H
Restart address of instruction RST 5
0028H
Restart address of instruction RST 6
0030H
Restart address of instruction RST 7
0038H
Restart address of interrupt TRAP
0024H
Restart address of instruction RST 7.5
003CH
Restart address of instruction RST 5.5
002CH
Restart address of instruction RST 6.5
0034H