Search by property
This page provides a simple browsing interface for finding entities described by a property and a named value. Other available search interfaces include the page property search, and the ask query builder.
List of results
- Extended Z80 instruction set#ADD A, r + (A+=r)
- Extended Z80 instruction set#ADC A, r + (A+=r+(CF?1:0))
- Extended Z80 instruction set#SBC A, (IXY+d) + (A-=((IXY+d)+(CF?1:0)))
- Extended Z80 instruction set#SBC A, (HL) + (A-=(HL*+(CF?1:0)))
- Extended Z80 instruction set#CP (IXY+d) + (A-=(IXY+d)?)
- Extended Z80 instruction set#SBC A, n + (A-=(n+(CF?1:0)))
- Extended Z80 instruction set#SBC A, r + (A-=(r+(CF?1:0)))
- Extended Z80 instruction set#CP (HL) + (A-=HL*?)
- Extended Z80 instruction set#CP n + (A-=n?)
- Extended Z80 instruction set#CP r + (A-=r?)
- Extended Z80 instruction set#NEG + (A:=0-A)
- Extended Z80 instruction set#SWAPNIB + (A:=A[3210]<<4 OR A[7654]>>4)
- Extended Z80 instruction set#SETAE + (A:=unsigned($80)>>(E&7))
- Extended Z80 instruction set#CPL + (A:=~A)
- Extended Z80 instruction set#MIRROR A + (A[76543210]:=A[01234567])
- Extended Z80 instruction set#DJNZ n + (B--; if B!=0 PC+=nn)
- Extended Z80 instruction set#OUTI + (B--; out(BC,HL*); HL++)
- Extended Z80 instruction set#OUTD + (B--; out(BC,HL*); HL--)
- Extended Z80 instruction set#RST n + (CALL n)
- Extended Z80 instruction set#CCF + (CF:=!CF)
- Extended Z80 instruction set#SCF + (CF:=1)
- Extended Z80 instruction set#LDI + (DE*:=HL*; DE++; HL++; BC--)
- Extended Z80 instruction set#LDD + (DE*:=HL*; DE--; HL--; BC--)
- Extended Z80 instruction set#LDWS + (DE*:=HL*; INC L; INC D;)
- Extended Z80 instruction set#MUL d,e + (DE:=D*E)
- Extended Z80 instruction set#BRLC DE,B + (DE:=DE<<(B&15) OR DE>>(16-B&15))
- Extended Z80 instruction set#BSLA DE,B + (DE:=DE<<(B&31))
- Extended Z80 instruction set#BSRA DE,B + (DE:=signed(DE)>>(B&31))
- Extended Z80 instruction set#BSRL DE,B + (DE:=unsigned(DE)>>(B&31))
- Extended Z80 instruction set#BSRF DE,B + (DE:=~(unsigned(~DE)>>(B&31)))
- Extended Z80 instruction set#LD HL, (nn) + (HL := (nn)*)
- Extended Z80 instruction set#LD (HL), n + (HL* := n)
- Extended Z80 instruction set#LD (HL),r + (HL* := r)
- Extended Z80 instruction set#INC (HL) + (HL*++)
- Extended Z80 instruction set#DEC (HL) + (HL*--)
- Extended Z80 instruction set#SL1 (HL) + (HL*:=(HL*<<1)+1)
- Extended Z80 instruction set#RES b,(HL) + (HL*:=HL* & (~(1<<b)))
- Extended Z80 instruction set#SET b,(HL) + (HL*:=HL* OR (1<<b))
- Extended Z80 instruction set#SLA (HL) + (HL*:=HL*<<1)
- Extended Z80 instruction set#SRA (HL) + (HL*:=HL*>>1 OR HL*[7])
- Extended Z80 instruction set#INI + (HL*:=in(BC); HL++; B--)
- Extended Z80 instruction set#IND + (HL*:=in(BC); HL--; B--)
- Extended Z80 instruction set#SRL (HL) + (HL*:=unsigned(HL*)>>1)
- Extended Z80 instruction set#CPI + (HL*==A?; HL++; BC--)
- Extended Z80 instruction set#CPD + (HL*==A?; HL--; BC--)
- Extended Z80 instruction set#BIT b,(HL) + (HL*[b]==1?)
- Extended Z80 instruction set#ADD HL, BC/DE/HL/SP + (HL+=rr)
- Extended Z80 instruction set#ADC HL, BC/DE/HL/SP + (HL+=rr+(CF?1:0))
- Extended Z80 instruction set#SBC HL, BC/DE/HL/SP + (HL-=(rr+(CF?1:0)))
- Extended Z80 instruction set#PIXELAD + (HL:=$4000+((D&$C0)<<5)+((D&$07)<<8)+((D&$38)<<2)+(E>>3))
- Extended Z80 instruction set#NEXTREG n, A + (HwNextReg_n:=A)