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#SET b,r + (r:=r OR (1<<b))
- Extended Z80 instruction set#SLA r + (r:=r<<1)
- Extended Z80 instruction set#SRA r + (r:=r>>1 OR r[7])
- Extended Z80 instruction set#SRL r + (r:=unsigned(r)>>1)
- Extended Z80 instruction set#BIT b,r + (r[b]==1?)
- Extended Z80 instruction set#LD BC/DE/SP/IXY, (nn) + (rr := (nn)*)
- Extended Z80 instruction set#LD BC/DE/HL/SP, nn + (rr := nn)
- Extended Z80 instruction set#LD IXY, nn + (rr := nn)
- Extended Z80 instruction set#LD (BC/DE), A + (rr* := A)
- Extended Z80 instruction set#INC BC/DE/HL/SP + (rr++)
- Extended Z80 instruction set#INC IXY + (rr++)
- Extended Z80 instruction set#ADD HL/DE/BC, nn + (rr+=nn)
- Extended Z80 instruction set#ADD HL/DE/BC, A + (rr+=unsigned A)
- Extended Z80 instruction set#DEC BC/DE/HL/SP + (rr--)
- Extended Z80 instruction set#DEC IXY + (rr--)
- Extended Z80 instruction set#POP BC/DE/HL + (rr:=SP*; SP+=2)
- Extended Z80 instruction set#POP AF + (rr:=SP*; SP+=2)
- Extended Z80 instruction set#POP IXY + (rr:=SP*; SP+=2)
- Extended Z80 instruction set#EX AF, AF' + (swap(AF,AF'))
- Extended Z80 instruction set#EXX + (swap(BC,BC');swap(DE,DE');swap(HL,HL'))
- Extended Z80 instruction set#EX DE, HL + (swap(DE,HL))
- Extended Z80 instruction set#EX (SP), HL + (swap(SP*,HL))
- Extended Z80 instruction set#EX (SP), IXY + (swap(SP*,IXY))
- Extended Z80 instruction set#HALT + (waits for interrupt)
- Extended Z80 instruction set#RR r,(IX+d) + (x:=(IX+d)*[0]; (IX+d)*:=(IX+d)*>>1; (IX+d)*[7]:=CF; CF:=x; r=(IX+d)*)
- Extended Z80 instruction set#RRC r,(IX+d) + (x:=(IX+d)*[0]; (IX+d)*:=(IX+d)*>>1; (IX+d)*[7]:=x; CF:=x; r:=(IX+d)*)
- Extended Z80 instruction set#RL r,(IX+d) + (x:=(IX+d)*[7]; (IX+d)*:=(IX+d)*<<1; (IX+d)*[0]:=CF; CF:=x; r:=(IX+d)*)
- Extended Z80 instruction set#RLC r,(IX+d) + (x:=(IX+d)*[7]; (IX+d)*:=(IX+d)*<<1; (IX+d)*[0]:=x; CF:=x; r:=(IX+d)*)
- Extended Z80 instruction set#RR (IXY+d) + (x:=(IXY+d)*[0]; (IXY+d)*:=(IXY+d)*>>1; (IXY+d)*[7]:=CF; CF:=x)
- Extended Z80 instruction set#RRC (IXY+d) + (x:=(IXY+d)*[0]; (IXY+d)*:=(IXY+d)*>>1; (IXY+d)*[7]:=x; CF:=x)
- Extended Z80 instruction set#RL (IXY+d) + (x:=(IXY+d)*[7]; (IXY+d)*:=(IXY+d)*<<1; (IXY+d)*[0]:=CF; CF:=x)
- Extended Z80 instruction set#RLC (IXY+d) + (x:=(IXY+d)*[7]; (IXY+d)*:=(IXY+d)*<<1; (IXY+d)*[0]:=x; CF:=x)
- Extended Z80 instruction set#RRA + (x:=A[0]; A:=A>>1; A[7]:=CF; CF:=x)
- Extended Z80 instruction set#RRCA + (x:=A[0]; A:=A>>1; A[7]:=x; CF:=x)
- Extended Z80 instruction set#RLA + (x:=A[7]; A:=A<<1; A[0]:=CF; CF:=x)
- Extended Z80 instruction set#RLCA + (x:=A[7]; A:=A<<1; A[0]:=x; CF:=x)
- Extended Z80 instruction set#RR (HL) + (x:=HL*[0]; HL*:=HL*>>1; HL*[7]:=CF; CF:=x)
- Extended Z80 instruction set#RRC (HL) + (x:=HL*[0]; HL*:=HL*>>1; HL*[7]:=x; CF:=x)
- Extended Z80 instruction set#RL (HL) + (x:=HL*[7]; HL*:=HL*<<1; HL*[0]:=CF; CF:=x)
- Extended Z80 instruction set#RLC (HL) + (x:=HL*[7]; HL*:=HL*<<1; HL*[0]:=x; CF:=x)
- Extended Z80 instruction set#RR r + (x:=r[0]; r:=r>>1; r[7]:=CF; CF:=x)
- Extended Z80 instruction set#RRC r + (x:=r[0]; r:=r>>1; r[7]:=x; CF:=x)
- Extended Z80 instruction set#RL r + (x:=r[7]; r:=r<<1; r[0]:=CF; CF:=x)
- Extended Z80 instruction set#RLC r + (x:=r[7]; r:=r<<1; r[0]:=x; CF:=x)
- Extended Z80 instruction set#RLD + (x=HL*; HL*[0123]:=A[0123]; HL*[7654]:=x[0123]; A[0123]:=x[7654])
- Extended Z80 instruction set#RRD + (x=HL*; HL*[7654]:=A[0123]; HL*[0123]:=x[7654]; A[0123]:=x[0123])
- Extended Z80 instruction set#LDIX + ({if HL*!=A DE*:=HL*;} DE++; HL++; BC--)
- Extended Z80 instruction set#LDDX + ({if HL*!=A DE*:=HL*;} DE++; HL--; BC--)