Semantic search
Mnemonic | Status | Addressing Mode 1 | Addressing Mode 2 | C | N | PV | H | Z | S | T-States | Summary |
---|---|---|---|---|---|---|---|---|---|---|---|
EXX | S | - | - | - | - | - | - | - | - | 4 | swap(BC,BC');swap(DE,DE');swap(HL,HL') |
HALT | S | - | - | - | - | - | - | - | - | 4 | waits for interrupt |
IM n | S | Immediate | - | - | - | - | - | - | - | 8 | Interrupt mode:=n |
IN (c) | U | Register | - | - | 0 | P | 0 | S | S | 12 | in(BC)? |
IN A, (n) | S | Accumulator | Immediate | - | - | - | - | - | - | 11 | A := in(An) |
IN r, (c) | S | Register | Register | - | 0 | P | 0 | S | S | 12 | r := in(BC) |
INC (HL) | S | Indirect | - | - | 0 | ! | S | S | S | 11 | HL*++ |
INC (IXY+d) | S | Indexed | - | - | 0 | ! | S | S | S | 23 | (IXY+d)*++ |
INC BC/DE/HL/SP | S | Register | - | - | - | - | - | - | - | 6 | rr++ |
INC IXY | S | Register | - | - | - | - | - | - | - | 10 | rr++ |
INC r | S | Register | - | - | 0 | ! | S | S | S | 4 | r++ |
IND | S | - | - | ? | 1 | ? | ? | ! | ? | 16 | HL*:=in(BC); HL--; B-- |
INDR | S | - | - | ? | 1 | ? | ? | 1 | ? | 21x+16 | do IND while(B>0) |
INI | S | - | - | ? | 1 | ? | ? | ! | ? | 16 | HL*:=in(BC); HL++; B-- |
INIR | S | - | - | ? | 1 | ? | ? | 1 | ? | 21x+16 | do INI while(B>0) |
JP (C) | E | Register | - | ? | ? | ? | ? | ? | ? | 13 | PC:=PC&$C000+IN(C)<<6 |
JP (HL) | S | Register | - | - | - | - | - | - | - | 4 | PC:=HL (not PC:=HL*) |
JP (IXY) | S | Register | - | - | - | - | - | - | - | 8 | PC:=IXY (not PC:=IXY*) |
JP Z/NZ/NC/C/PO/PE/P/M, nn | S | Address | - | - | - | - | - | - | - | 10 | if cc PC:=nn |
JP nn | S | Address | - | - | - | - | - | - | - | 10 | PC:=nn |
JR C/NC/Z/NZ, nn | S | Immediate | - | - | - | - | - | - | - | 12 ; 7 if not cc | if cc PC+=nn |
JR nn | S | Immediate | - | - | - | - | - | - | - | 12 | PC+=nn |
LD (BC/DE), A | S | Indirect | Accumulator | - | - | - | - | - | - | 7 | rr* := A |
LD (HL), n | S | Indirect | Immediate | - | - | - | - | - | - | 10 | HL* := n |
LD (HL),r | S | Indirect | Register | - | - | - | - | - | - | 7 | HL* := r |
LD (IXY+d), n | S | Indexed | Immediate | - | - | - | - | - | - | 19 | (IXY+d)* := n |
LD (IXY+d),r | S | Indexed | Register | - | - | - | - | - | - | 19 | (IXY+D)* := r |
LD (nn), A | S | Address | Accumulator | - | - | - | - | - | - | 13 | (nn)* := A |
LD (nn), BC/DE/SP/IXY | S | Address | Register | - | - | - | - | - | - | 20 | (nn)* := rr |
LD (nn), HL | S | Address | Register | - | - | - | - | - | - | 16 | (nn)* := HL |
LD A, (BC/DE) | S | Accumulator | Indirect | - | - | - | - | - | - | 7 | A := rr* |
LD A, (nn) | S | Accumulator | Address | - | - | - | - | - | - | 13 | A := (nn)* |
LD A, I | S | Accumulator | Register | - | 0 | ! | 0 | S | S | 9 | A := I; P/V:=IFF2 |
LD A, R | S | Accumulator | Register | - | 0 | ! | 0 | S | S | 9 | A := R; P/V:=IFF2 |
LD BC/DE/HL/SP, nn | S | Register | Immediate | - | - | - | - | - | - | 10 | rr := nn |
LD BC/DE/SP/IXY, (nn) | S | Register | Address | - | - | - | - | - | - | 20 | rr := (nn)* |
LD HL, (nn) | S | Register | Address | - | - | - | - | - | - | 16 | HL := (nn)* |
LD I, A | S | Register | Accumulator | - | - | - | - | - | - | 9 | I := A |
LD IXY, nn | S | Register | Immediate | - | - | - | - | - | - | 14 | rr := nn |
LD R, A | S | Register | Accumulator | - | - | - | - | - | - | 9 | R := A |
LD SP, HL | S | Register | Register | - | - | - | - | - | - | 6 | SP := HL |
LD SP, IXY | S | Register | Register | - | - | - | - | - | - | 10 | SP := IXY |
LD r, (HL) | S | Register | Indirect | - | - | - | - | - | - | 7 | r := HL* |
LD r, (IXY+d) | S | Register | Indexed | - | - | - | - | - | - | 19 | r := (IXY+d)* |
LD r, r' | S | Register | Register | - | - | - | - | - | - | 4 | r := r' |
LD r,n | S | Register | Immediate | - | - | - | - | - | - | 7 | r := n |
LDD | S | - | - | - | 0 | L | 0 | - | - | 16 | DE*:=HL*; DE--; HL--; BC-- |
LDDR | S | - | - | - | 0 | 0 | 0 | - | - | 21x+16 | do LDD while(BC>0) |
LDDRX | E | - | - | - | - | - | - | - | - | 21/16 | do LDDX while(BC>0) |
LDDX | E | - | - | - | - | - | - | - | - | 16 | {if HL*!=A DE*:=HL*;} DE++; HL--; BC-- |