Difference between revisions of "Extended Z80 instruction set"
(further fixing "shortfx" of rotate instructions) |
(added note about implementing BSRF in C, implicit variable type promotion gotcha) |
||
(35 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
This is a general list of Z80 instructions with descriptions. For summaries, you can view the [[Z80 Instruction Table]]. You can also [[Special:RunQuery/OpcodeQuery|search for opcodes]]. | This is a general list of Z80 instructions with descriptions. For summaries, you can view the [[Z80 Instruction Table]]. You can also [[Special:RunQuery/OpcodeQuery|search for opcodes]]. | ||
+ | |||
+ | === Erratum === | ||
+ | 2021-09-16: figuring out the hard way, the three Z80N instructions `ADD HL/DE/BC,A` actually do NOT preserve carry flag, but change it to undefined value (verified with core 3.1.5). There's also strong suspicion (but not verified yet), that LDIX/LDDX/LDIRX/LDDRX/LDPIRX do affects flags the same way as LDI/LDIR - to be verified. | ||
+ | |||
+ | 2022-01-11: it's [http://www.z80.info/zip/z80-documented.pdf documented] for several years that regular Z80 INI/IND/INIR/INDR/OUTI/OUTD/OTIR/OTDR instructions do modify carry flag (contrary to the official Z80 documentation and many Internet resources describing Z80 instructions, including previous version of this page, unfortunately). | ||
=== Term references === | === Term references === | ||
Line 497: | Line 502: | ||
|shortfx=SP-=2; SP*:=rr | |shortfx=SP-=2; SP*:=rr | ||
}} | }} | ||
− | {{Opcode|opdesc=PUSH | + | {{Opcode|opdesc=PUSH nn |
|ad1=Immediate | |ad1=Immediate | ||
|ad2=- | |ad2=- | ||
Line 508: | Line 513: | ||
|s=- | |s=- | ||
|tstates=23 | |tstates=23 | ||
− | |shortfx=SP-=2; SP*:= | + | |shortfx=SP-=2; SP*:=nn |
}} | }} | ||
Line 518: | Line 523: | ||
;POP | ;POP | ||
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
− | {{Opcode|opdesc=POP BC/DE/HL | + | {{Opcode|opdesc=POP BC/DE/HL |
|ad1=Register | |ad1=Register | ||
|ad2=- | |ad2=- | ||
Line 528: | Line 533: | ||
|z=- | |z=- | ||
|s=- | |s=- | ||
+ | |tstates=10 | ||
+ | |shortfx=rr:=SP*; SP+=2 | ||
+ | }} | ||
+ | {{Opcode|opdesc=POP AF | ||
+ | |ad1=Register | ||
+ | |ad2=- | ||
+ | |status=S | ||
+ | |c=! | ||
+ | |n=! | ||
+ | |pv=! | ||
+ | |h=! | ||
+ | |z=! | ||
+ | |s=! | ||
|tstates=10 | |tstates=10 | ||
|shortfx=rr:=SP*; SP+=2 | |shortfx=rr:=SP*; SP+=2 | ||
Line 544: | Line 562: | ||
|shortfx=rr:=SP*; SP+=2 | |shortfx=rr:=SP*; SP+=2 | ||
}} | }} | ||
− | |||
|} | |} | ||
:Pops the given argument from the stack. This can be any 16-bit register pair except SP. The current value at SP is copied to the register pair and then SP is raised by 2. | :Pops the given argument from the stack. This can be any 16-bit register pair except SP. The current value at SP is copied to the register pair and then SP is raised by 2. | ||
+ | :Popping into AF does set value of flag register F directly to low 8 bits of value from stack. | ||
Line 647: | Line 665: | ||
}} | }} | ||
|} | |} | ||
− | :Next-only extended opcode. Copies the byte pointed to by HL to the address pointed to by DE and increments only L and D. This is used for vertically copying bytes to the Layer | + | :Next-only extended opcode. Copies the byte pointed to by HL to the address pointed to by DE and increments only L and D. This is used for vertically copying bytes to the Layer 2 display. |
:The flags are identical to what the '''INC D''' instruction would produce. | :The flags are identical to what the '''INC D''' instruction would produce. | ||
:Note the source data are read only from single 256B (aligned) block of memory, because only L is incremented, not HL. | :Note the source data are read only from single 256B (aligned) block of memory, because only L is incremented, not HL. | ||
Line 898: | Line 916: | ||
|ad2=Register | |ad2=Register | ||
|status=E | |status=E | ||
− | |c= | + | |c=? |
|n=- | |n=- | ||
|pv=- | |pv=- | ||
Line 905: | Line 923: | ||
|s=- | |s=- | ||
|tstates=8 | |tstates=8 | ||
− | |shortfx=rr+=A | + | |shortfx=rr+=unsigned A |
}} | }} | ||
− | {{Opcode|opdesc=ADD HL/DE/BC, | + | {{Opcode|opdesc=ADD HL/DE/BC, nn |
|ad1=Register | |ad1=Register | ||
|ad2=Immediate | |ad2=Immediate | ||
|status=E | |status=E | ||
− | |c= | + | |c=- |
− | |n= | + | |n=- |
− | |pv= | + | |pv=- |
− | |h= | + | |h=- |
− | |z= | + | |z=- |
− | |s= | + | |s=- |
|tstates=16 | |tstates=16 | ||
− | |shortfx=rr+= | + | |shortfx=rr+=nn |
}} | }} | ||
|} | |} | ||
Line 927: | Line 945: | ||
:** The contents of memory pointed to by HL or by indexing based on IX or IY. | :** The contents of memory pointed to by HL or by indexing based on IX or IY. | ||
:* When adding 16-bit values the first parameter must be HL, IX or IY and the second must be another 16-bit register pair. If the first parameter is IX or IY, the second cannot be HL or the other index register. | :* When adding 16-bit values the first parameter must be HL, IX or IY and the second must be another 16-bit register pair. If the first parameter is IX or IY, the second cannot be HL or the other index register. | ||
− | :* On the Spectrum Next the extended opcodes also allow the first parameter to be HL, DE, or BC and the second to be A or an immediate value. | + | :* For 16 bit additions (regular Z80), H is set if a carry occurred in bit 11 (ie, a half carry in the high byte) |
− | + | :* On the Spectrum Next the extended opcodes also allow the first parameter to be HL, DE, or BC and the second to be A (A will be zero extended to 16 bits) or an 16bit immediate value. | |
Line 1,142: | Line 1,160: | ||
|c=0 | |c=0 | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=P |
|h=1 | |h=1 | ||
|z=S | |z=S | ||
Line 1,155: | Line 1,173: | ||
|c=0 | |c=0 | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=P |
|h=1 | |h=1 | ||
|z=S | |z=S | ||
Line 1,168: | Line 1,186: | ||
|c=0 | |c=0 | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=P |
|h=1 | |h=1 | ||
|z=S | |z=S | ||
Line 1,181: | Line 1,199: | ||
|c=0 | |c=0 | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=P |
|h=1 | |h=1 | ||
|z=S | |z=S | ||
Line 1,194: | Line 1,212: | ||
|c=0 | |c=0 | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=P |
|h=0 | |h=0 | ||
|z=S | |z=S | ||
|s=S | |s=S | ||
|tstates=4 | |tstates=4 | ||
− | |shortfx=A := A | + | |shortfx=A := A OR r |
}} | }} | ||
{{Opcode|opdesc=OR n | {{Opcode|opdesc=OR n | ||
Line 1,207: | Line 1,225: | ||
|c=0 | |c=0 | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=P |
|h=0 | |h=0 | ||
|z=S | |z=S | ||
|s=S | |s=S | ||
|tstates=7 | |tstates=7 | ||
− | |shortfx=A := A | + | |shortfx=A := A OR n |
}} | }} | ||
{{Opcode|opdesc=OR (HL) | {{Opcode|opdesc=OR (HL) | ||
Line 1,220: | Line 1,238: | ||
|c=0 | |c=0 | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=P |
|h=0 | |h=0 | ||
|z=S | |z=S | ||
|s=S | |s=S | ||
|tstates=7 | |tstates=7 | ||
− | |shortfx=A := A | + | |shortfx=A := A OR HL* |
}} | }} | ||
{{Opcode|opdesc=OR (IXY+d) | {{Opcode|opdesc=OR (IXY+d) | ||
Line 1,233: | Line 1,251: | ||
|c=0 | |c=0 | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=P |
|h=0 | |h=0 | ||
|z=S | |z=S | ||
|s=S | |s=S | ||
|tstates=19 | |tstates=19 | ||
− | |shortfx=A := A | + | |shortfx=A := A OR (IXY+d)* |
}} | }} | ||
{{Opcode|opdesc=XOR r | {{Opcode|opdesc=XOR r | ||
Line 1,384: | Line 1,402: | ||
|c=S | |c=S | ||
|n=? | |n=? | ||
− | |pv= | + | |pv=P |
|h=S | |h=S | ||
|z=S | |z=S | ||
Line 1,468: | Line 1,486: | ||
− | ;DEC | + | ;DEC (DECrement) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=DEC r | {{Opcode|opdesc=DEC r | ||
Line 1,540: | Line 1,558: | ||
− | ;RLC (Rotate Left | + | ;RLC (Rotate Left Circular) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=RLC r | {{Opcode|opdesc=RLC r | ||
Line 1,659: | Line 1,677: | ||
− | ;RRC, RR (Rotate Right | + | ;RRC, RR (Rotate Right Circular, Rotate Right) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=RRC r | {{Opcode|opdesc=RRC r | ||
Line 1,843: | Line 1,861: | ||
|s=S | |s=S | ||
|tstates=8 | |tstates=8 | ||
− | |shortfx=r:=r>>1 | + | |shortfx=r:=r>>1 OR r[7] |
}} | }} | ||
{{Opcode|opdesc=SRA (HL) | {{Opcode|opdesc=SRA (HL) | ||
Line 1,856: | Line 1,874: | ||
|s=S | |s=S | ||
|tstates=15 | |tstates=15 | ||
− | |shortfx=HL*:=HL*>>1 | + | |shortfx=HL*:=HL*>>1 OR HL*[7] |
}} | }} | ||
{{Opcode|opdesc=SRA (IXY+d) | {{Opcode|opdesc=SRA (IXY+d) | ||
Line 1,869: | Line 1,887: | ||
|s=S | |s=S | ||
|tstates=23 | |tstates=23 | ||
− | |shortfx=(IXY+d)*:=(IXY+d)*>>1 | + | |shortfx=(IXY+d)*:=(IXY+d)*>>1 OR (IXY+d)*[7] |
}} | }} | ||
{{Opcode|opdesc=SRA r,(IX+d) | {{Opcode|opdesc=SRA r,(IX+d) | ||
Line 1,882: | Line 1,900: | ||
|s=S | |s=S | ||
|tstates=23 | |tstates=23 | ||
− | |shortfx=(IX+d)*:=(IX+d)*>>1 | + | |shortfx=(IX+d)*:=(IX+d)*>>1 OR (IX+d)*[7]; r:=(IX+d)* |
}} | }} | ||
|} | |} | ||
Line 1,902: | Line 1,920: | ||
|s=0 | |s=0 | ||
|tstates=8 | |tstates=8 | ||
+ | |shortfx=r:=unsigned(r)>>1 | ||
}} | }} | ||
{{Opcode|opdesc=SRL (HL) | {{Opcode|opdesc=SRL (HL) | ||
Line 1,914: | Line 1,933: | ||
|s=0 | |s=0 | ||
|tstates=15 | |tstates=15 | ||
+ | |shortfx=HL*:=unsigned(HL*)>>1 | ||
}} | }} | ||
{{Opcode|opdesc=SRL (IXY+d) | {{Opcode|opdesc=SRL (IXY+d) | ||
Line 1,926: | Line 1,946: | ||
|s=0 | |s=0 | ||
|tstates=23 | |tstates=23 | ||
+ | |shortfx=(IXY+d)*:=unsigned((IXY+d)*)>>1 | ||
}} | }} | ||
− | {{Opcode|opdesc=SRL r,( | + | {{Opcode|opdesc=SRL r,(IXY+d) |
|ad1=Register | |ad1=Register | ||
|ad2=Indexed | |ad2=Indexed | ||
Line 1,938: | Line 1,959: | ||
|s=0 | |s=0 | ||
|tstates=23 | |tstates=23 | ||
+ | |shortfx=(IXY+d)*:=unsigned((IXY+d)*)>>1; r:=(IXY+d)* | ||
}} | }} | ||
|} | |} | ||
Line 2,021: | Line 2,043: | ||
|s=S | |s=S | ||
|tstates=8 | |tstates=8 | ||
+ | |shortfx=r:=(r<<1)+1 | ||
}} | }} | ||
{{Opcode|opdesc=SL1 (HL) | {{Opcode|opdesc=SL1 (HL) | ||
Line 2,033: | Line 2,056: | ||
|s=S | |s=S | ||
|tstates=15 | |tstates=15 | ||
+ | |shortfx=HL*:=(HL*<<1)+1 | ||
}} | }} | ||
{{Opcode|opdesc=SL1 (IXY+d) | {{Opcode|opdesc=SL1 (IXY+d) | ||
Line 2,045: | Line 2,069: | ||
|s=S | |s=S | ||
|tstates=23 | |tstates=23 | ||
+ | |shortfx=(IXY+d)*:=((IXY+d)*<<1)+1 | ||
}} | }} | ||
− | {{Opcode|opdesc=SL1 r,( | + | {{Opcode|opdesc=SL1 r,(IXY+d) |
|ad1=Register | |ad1=Register | ||
|ad2=Indexed | |ad2=Indexed | ||
Line 2,057: | Line 2,082: | ||
|s=S | |s=S | ||
|tstates=23 | |tstates=23 | ||
+ | |shortfx=(IXY+d)*:=((IXY+d)*<<1)+1; r=(IXY+d)* | ||
}} | }} | ||
|} | |} | ||
Line 2,063: | Line 2,089: | ||
− | ;RLD | + | ;RLD (Rotate Left bcd Digit) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=RLD | {{Opcode|opdesc=RLD | ||
Line 2,083: | Line 2,109: | ||
− | ;RRD | + | ;RRD (Rotate Right bcd Digit) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=RRD | {{Opcode|opdesc=RRD | ||
Line 2,096: | Line 2,122: | ||
|s=S | |s=S | ||
|tstates=18 | |tstates=18 | ||
+ | |shortfx=x=HL*; HL*[7654]:=A[0123]; HL*[0123]:=x[7654]; A[0123]:=x[0123] | ||
}} | }} | ||
|} | |} | ||
Line 2,165: | Line 2,192: | ||
|z=- | |z=- | ||
|s=- | |s=- | ||
− | |shortfx=DE:=DE<<(B&15) | + | |shortfx=DE:=DE<<(B&15) OR DE>>(16-B&15) |
|tstates=8 | |tstates=8 | ||
}} | }} | ||
|} | |} | ||
:Shift instructions use only bits 4..0 of B, BSLA shifts DE left, BSRA/BSRL/BSRF shifts DE right in arithmetic/logical/fill-one way. BRLC rotates DE left by B places, uses only bits 3..0 of B (to rotate right, use B=16-places). | :Shift instructions use only bits 4..0 of B, BSLA shifts DE left, BSRA/BSRL/BSRF shifts DE right in arithmetic/logical/fill-one way. BRLC rotates DE left by B places, uses only bits 3..0 of B (to rotate right, use B=16-places). | ||
+ | |||
+ | If you are implementing BSRF in C (or similar), be careful with implicit variable type promotion. You will need to do something like this: DE:=~((uint16_t)~DE>>(B&31)) | ||
Line 2,212: | Line 2,241: | ||
− | ;CCF ( | + | ;CCF (Complement Carry Flag) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=CCF | {{Opcode|opdesc=CCF | ||
Line 2,252: | Line 2,281: | ||
− | ;BIT | + | ;BIT (test BIT) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=BIT b,r | {{Opcode|opdesc=BIT b,r | ||
Line 2,260: | Line 2,289: | ||
|c=- | |c=- | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=? |
|h=1 | |h=1 | ||
|z=! | |z=! | ||
− | |s= | + | |s=? |
|tstates=8 | |tstates=8 | ||
|shortfx=r[b]==1? | |shortfx=r[b]==1? | ||
Line 2,273: | Line 2,302: | ||
|c=- | |c=- | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=? |
|h=1 | |h=1 | ||
|z=! | |z=! | ||
− | |s= | + | |s=? |
|tstates=12 | |tstates=12 | ||
− | |shortfx=HL*[b]=1? | + | |shortfx=HL*[b]==1? |
}} | }} | ||
{{Opcode|opdesc=BIT b,(IXY+d) | {{Opcode|opdesc=BIT b,(IXY+d) | ||
Line 2,286: | Line 2,315: | ||
|c=- | |c=- | ||
|n=0 | |n=0 | ||
− | |pv= | + | |pv=? |
|h=1 | |h=1 | ||
|z=! | |z=! | ||
− | |s= | + | |s=? |
|tstates=20 | |tstates=20 | ||
− | |shortfx=(IXY+d)*[b]=1? | + | |shortfx=(IXY+d)*[b]==1? |
}} | }} | ||
|} | |} | ||
Line 2,298: | Line 2,327: | ||
− | ;SET | + | ;SET (SET bit) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=SET b,r | {{Opcode|opdesc=SET b,r | ||
Line 2,311: | Line 2,340: | ||
|s=- | |s=- | ||
|tstates=8 | |tstates=8 | ||
− | |shortfx=r:=r | + | |shortfx=r:=r OR (1<<b) |
}} | }} | ||
{{Opcode|opdesc=SET b,(HL) | {{Opcode|opdesc=SET b,(HL) | ||
Line 2,321: | Line 2,350: | ||
|pv=- | |pv=- | ||
|h=- | |h=- | ||
− | |z= | + | |z=- |
− | |s= | + | |s=- |
|tstates=15 | |tstates=15 | ||
− | |shortfx=HL*:=HL* | + | |shortfx=HL*:=HL* OR (1<<b) |
}} | }} | ||
{{Opcode|opdesc=SET b,(IXY+d) | {{Opcode|opdesc=SET b,(IXY+d) | ||
Line 2,337: | Line 2,366: | ||
|s=- | |s=- | ||
|tstates=23 | |tstates=23 | ||
− | |shortfx=(IXY+d)*:=(IXY+d)* | + | |shortfx=(IXY+d)*:=(IXY+d)* OR (1<<b) |
}} | }} | ||
{{Opcode|opdesc=SET r,b,(IX+d) | {{Opcode|opdesc=SET r,b,(IX+d) | ||
Line 2,350: | Line 2,379: | ||
|s=- | |s=- | ||
|tstates=23 | |tstates=23 | ||
− | |shortfx=(IX+d)*:=(IX+d)* | + | |shortfx=(IX+d)*:=(IX+d)* OR (1<<b); r:=(IX+d)* |
}} | }} | ||
{{Opcode|opdesc=SETAE | {{Opcode|opdesc=SETAE | ||
Line 2,371: | Line 2,400: | ||
− | ;RES (RESet) | + | ;RES (RESet bit) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=RES b,r | {{Opcode|opdesc=RES b,r | ||
Line 2,384: | Line 2,413: | ||
|s=- | |s=- | ||
|tstates=8 | |tstates=8 | ||
+ | |shortfx=r:=r & (~(1<<b)) | ||
}} | }} | ||
{{Opcode|opdesc=RES b,(HL) | {{Opcode|opdesc=RES b,(HL) | ||
Line 2,393: | Line 2,423: | ||
|pv=- | |pv=- | ||
|h=- | |h=- | ||
− | |z= | + | |z=- |
− | |s= | + | |s=- |
|tstates=15 | |tstates=15 | ||
+ | |shortfx=HL*:=HL* & (~(1<<b)) | ||
}} | }} | ||
{{Opcode|opdesc=RES b,(IXY+d) | {{Opcode|opdesc=RES b,(IXY+d) | ||
Line 2,408: | Line 2,439: | ||
|s=- | |s=- | ||
|tstates=23 | |tstates=23 | ||
+ | |shortfx=(IXY+d)*:=(IXY+d)* & (~(1<<b)) | ||
}} | }} | ||
{{Opcode|opdesc=RES r,b,(IX+d) | {{Opcode|opdesc=RES r,b,(IX+d) | ||
Line 2,420: | Line 2,452: | ||
|s=- | |s=- | ||
|tstates=23 | |tstates=23 | ||
+ | |shortfx=(IX+d)*:=(IX+d)* & (~(1<<b)); r:=(IX+d)* | ||
}} | }} | ||
|} | |} | ||
Line 2,439: | Line 2,472: | ||
|s=S | |s=S | ||
|tstates=8 | |tstates=8 | ||
+ | |shortfx=if(A&$0F>$09 or HF) A±=$06; if(A&$F0>$90 or CF) A±=$60 (± depends on NF) | ||
}} | }} | ||
|} | |} | ||
− | :Modifies the contents of the accumulator based on the flags | + | :Modifies the contents of the accumulator based on the flags left by previous operation to correct for binary coded decimal (BCD). |
− | ;MUL | + | ;MUL (MULtiply) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
− | {{Opcode|opdesc=MUL | + | {{Opcode|opdesc=MUL d,e |
|ad1=- | |ad1=- | ||
|ad2=- | |ad2=- | ||
Line 2,461: | Line 2,495: | ||
}} | }} | ||
|} | |} | ||
− | :Next extended opcode. Multiplies D by E, storing 16 bit result into DE. Does not alter any flags. | + | :Next extended opcode. Multiplies D by E, storing 16 bit result into DE. Does not alter any flags (the opcode is not compatible with any of the R800/Z180/eZ80/... variants of MUL, it is solely Next specific). |
− | ;SWAPNIB | + | ;SWAPNIB (SWAP NIBbles) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=SWAPNIB | {{Opcode|opdesc=SWAPNIB | ||
Line 2,478: | Line 2,512: | ||
|s=- | |s=- | ||
|tstates=8 | |tstates=8 | ||
− | |shortfx=A:=A[3210]<<4 | + | |shortfx=A:=A[3210]<<4 OR A[7654]>>4 |
}} | }} | ||
|} | |} | ||
Line 2,484: | Line 2,518: | ||
− | ;PIXELAD | + | ;PIXELAD (PIXEL ADdress) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=PIXELAD | {{Opcode|opdesc=PIXELAD | ||
Line 2,504: | Line 2,538: | ||
− | ;PIXELDN | + | ;PIXELDN (PIXEL DowN) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=PIXELDN | {{Opcode|opdesc=PIXELDN | ||
Line 2,517: | Line 2,551: | ||
|s=- | |s=- | ||
|tstates=8 | |tstates=8 | ||
− | |shortfx=if(HL&$0700!=$0700)HL+=256;else if(HL&$e0!=$e0)HL:=HL&$F8FF+$20;else HL:=HL&$F81F+$0800 | + | |shortfx=if(HL&$0700!=$0700) HL+=256;<br> |
+ | else if(HL&$e0!=$e0) HL:=HL&$F8FF+$20;<br> | ||
+ | else HL:=HL&$F81F+$0800 | ||
}} | }} | ||
|} | |} | ||
Line 2,582: | Line 2,618: | ||
− | ;JP cc | + | ;JP cc (JumP conditionally) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=JP Z/NZ/NC/C/PO/PE/P/M, nn | {{Opcode|opdesc=JP Z/NZ/NC/C/PO/PE/P/M, nn | ||
Line 2,627: | Line 2,663: | ||
|z=- | |z=- | ||
|s=- | |s=- | ||
− | |tstates=12 | + | |tstates=12 ; 7 if not cc |
|shortfx=if cc PC+=nn | |shortfx=if cc PC+=nn | ||
}} | }} | ||
Line 2,635: | Line 2,671: | ||
− | ;DJNZ (Decrement and Jump if Not Zero) | + | ;DJNZ (Decrement reg. b and Jump if Not Zero) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=DJNZ n | {{Opcode|opdesc=DJNZ n | ||
Line 2,670: | Line 2,706: | ||
|shortfx=SP-=2; SP*:=PC; PC:=nn | |shortfx=SP-=2; SP*:=PC; PC:=nn | ||
}} | }} | ||
− | {{Opcode|opdesc=CALL Z/NZ/C/NC/PO/PE/P/M, | + | {{Opcode|opdesc=CALL Z/NZ/C/NC/PO/PE/P/M, nn |
|ad1=Address | |ad1=Address | ||
|ad2=- | |ad2=- | ||
Line 2,680: | Line 2,716: | ||
|z=- | |z=- | ||
|s=- | |s=- | ||
− | |tstates=17 | + | |tstates=17 ; 10 if not cc |
|shortfx=if cc {SP-=2; SP*:=PC; PC:=nn} | |shortfx=if cc {SP-=2; SP*:=PC; PC:=nn} | ||
}} | }} | ||
Line 2,689: | Line 2,725: | ||
− | ;RET | + | ;RET (RETurn) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=RET | {{Opcode|opdesc=RET | ||
Line 2,714: | Line 2,750: | ||
|z=- | |z=- | ||
|s=- | |s=- | ||
− | |tstates=11 | + | |tstates=11 ; 5 if not cc |
|shortfx=if cc {PC:=SP*; SP+=2} | |shortfx=if cc {PC:=SP*; SP+=2} | ||
}} | }} | ||
Line 2,722: | Line 2,758: | ||
− | ;RETI | + | ;RETI (RETurn from Interrupt) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=RETI | {{Opcode|opdesc=RETI | ||
Line 2,735: | Line 2,771: | ||
|s=- | |s=- | ||
|tstates=14 | |tstates=14 | ||
+ | |shortfx=PC:=SP*; SP+=2 | ||
}} | }} | ||
|} | |} | ||
− | :Returns from an interrupt service routine. | + | :Returns from an interrupt service routine (same as RET instruction, but also does signal to I/O device that the interrupt routine is completed). |
− | ;RETN | + | ;RETN (RETurn from Non-maskable interrupt) |
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
{{Opcode|opdesc=RETN | {{Opcode|opdesc=RETN | ||
Line 2,754: | Line 2,791: | ||
|s=- | |s=- | ||
|tstates=14 | |tstates=14 | ||
+ | |shortfx=IFF1:=IFF2; PC:=SP*; SP+=2 | ||
}} | }} | ||
|} | |} | ||
Line 2,773: | Line 2,811: | ||
|s=- | |s=- | ||
|tstates=11 | |tstates=11 | ||
+ | |shortfx=CALL n | ||
}} | }} | ||
|} | |} | ||
Line 2,792: | Line 2,831: | ||
|s=- | |s=- | ||
|tstates=4 | |tstates=4 | ||
+ | |shortfx=PC+=1 | ||
}} | }} | ||
|} | |} | ||
− | :Does nothing. | + | :Does "nothing" (just usual housekeeping like refreshing memory and advancing program counter to next instruction). |
Line 2,811: | Line 2,851: | ||
|s=- | |s=- | ||
|tstates=4 | |tstates=4 | ||
+ | |shortfx=waits for interrupt | ||
}} | }} | ||
|} | |} | ||
− | :Suspends the CPU until an interrupt is received. | + | :Suspends the CPU until an interrupt is received (maskable interrupts must be enabled to break the wait). While CPU is waiting for interrupt, the fake NOP instruction is being executed, to keep memory refresh going on. |
Line 2,830: | Line 2,871: | ||
|s=- | |s=- | ||
|tstates=4 | |tstates=4 | ||
+ | |shortfx=IFF1:=0; IFF2:=0 | ||
}} | }} | ||
|} | |} | ||
Line 2,838: | Line 2,880: | ||
;EI (Enable Interrupts) | ;EI (Enable Interrupts) | ||
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
− | {{Opcode|opdesc= | + | {{Opcode|opdesc=EI |
|ad1=- | |ad1=- | ||
|ad2=- | |ad2=- | ||
Line 2,848: | Line 2,890: | ||
|z=- | |z=- | ||
|s=- | |s=- | ||
− | |tstates= | + | |tstates=4 |
+ | |shortfx=IFF1:=1; IFF2:=1 | ||
}} | }} | ||
|} | |} | ||
− | :Enables maskable interrupts. | + | :Enables maskable interrupts (after next instruction, i.e. for example "EI RET" - the interrupt may happen only after RET instruction is finished (or "EI DI" pair of instructions will not allow any maskable interrupt to happen). |
Line 2,868: | Line 2,911: | ||
|s=- | |s=- | ||
|tstates=8 | |tstates=8 | ||
+ | |shortfx=Interrupt mode:=n | ||
}} | }} | ||
|} | |} | ||
Line 2,935: | Line 2,979: | ||
}} | }} | ||
|} | |} | ||
− | :Undocumented opcodes. The IN variation performs an input, but does not store the result, only setting the flags. The OUT variation outputs 0 on the port. This is the only number that can be output to a port in immediate mode. | + | :Undocumented opcodes. The IN variation performs an input, but does not store the result, only setting the flags. The OUT variation outputs 0 on the port. This is the only number that can be output to a port in immediate mode. The Next FPGA does output zero, but some Z80 chips manufactured differently from early batches output different value like 255, so it is not recommended to use OUT (C),0 if you want to reuse your code also on classic ZX Spectrum or publish it as example. |
Line 2,978: | Line 3,022: | ||
|ad2=- | |ad2=- | ||
|status=S | |status=S | ||
− | |c= | + | |c=? |
|n=1 | |n=1 | ||
− | |pv= | + | |pv=? |
− | |h= | + | |h=? |
|z=! | |z=! | ||
− | |s= | + | |s=? |
|tstates=16 | |tstates=16 | ||
|shortfx=HL*:=in(BC); HL++; B-- | |shortfx=HL*:=in(BC); HL++; B-- | ||
}} | }} | ||
|} | |} | ||
− | :Inputs a value from port BC into memory at the address stored in HL, then increments HL and decrements B. Because B is decremented and is part of the port number, the port number for future INI instructions will change unless it is reset. Z is set if B reached 0; S, H, and P/V are destroyed. | + | :Inputs a value from port BC into memory at the address stored in HL, then increments HL and decrements B. Because B is decremented and is part of the port number, the port number for future INI instructions will change unless it is reset. Z is set if B reached 0; C, S, H, and P/V are destroyed. |
Line 2,998: | Line 3,042: | ||
|ad2=- | |ad2=- | ||
|status=S | |status=S | ||
− | |c= | + | |c=? |
|n=1 | |n=1 | ||
− | |pv= | + | |pv=? |
− | |h= | + | |h=? |
|z=1 | |z=1 | ||
− | |s= | + | |s=? |
|tstates=21x+16 | |tstates=21x+16 | ||
|shortfx=do INI while(B>0) | |shortfx=do INI while(B>0) | ||
}} | }} | ||
|} | |} | ||
− | :Loops INIR until B reaches 0. Because B is decremented during this process and is part of the port number, this is unlikely to be useful except when the upper byte of the port number is not relevant. Interrupts are recognized during execution. | + | :Loops INIR until B reaches 0, so that if INIR starts with B=0 it loops 256 times. Because B is decremented during this process and is part of the port number, this is unlikely to be useful except when the upper byte of the port number is not relevant. Interrupts are recognized during execution. |
Line 3,018: | Line 3,062: | ||
|ad2=- | |ad2=- | ||
|status=S | |status=S | ||
− | |c= | + | |c=? |
|n=1 | |n=1 | ||
− | |pv= | + | |pv=? |
− | |h= | + | |h=? |
|z=! | |z=! | ||
− | |s= | + | |s=? |
|tstates=16 | |tstates=16 | ||
|shortfx=HL*:=in(BC); HL--; B-- | |shortfx=HL*:=in(BC); HL--; B-- | ||
Line 3,031: | Line 3,075: | ||
|ad2=- | |ad2=- | ||
|status=S | |status=S | ||
− | |c= | + | |c=? |
|n=1 | |n=1 | ||
− | |pv= | + | |pv=? |
− | |h= | + | |h=? |
|z=1 | |z=1 | ||
− | |s= | + | |s=? |
|tstates=21x+16 | |tstates=21x+16 | ||
|shortfx=do IND while(B>0) | |shortfx=do IND while(B>0) | ||
Line 3,051: | Line 3,095: | ||
|ad2=- | |ad2=- | ||
|status=S | |status=S | ||
− | |c= | + | |c=? |
|n=1 | |n=1 | ||
− | |pv= | + | |pv=? |
− | |h= | + | |h=? |
|z=! | |z=! | ||
− | |s= | + | |s=? |
|tstates=16 | |tstates=16 | ||
|shortfx=B--; out(BC,HL*); HL++ | |shortfx=B--; out(BC,HL*); HL++ | ||
Line 3,064: | Line 3,108: | ||
|ad2=- | |ad2=- | ||
|status=S | |status=S | ||
− | |c= | + | |c=? |
|n=1 | |n=1 | ||
− | |pv= | + | |pv=? |
− | |h= | + | |h=? |
|z=1 | |z=1 | ||
− | |s= | + | |s=? |
|tstates=21x+16 | |tstates=21x+16 | ||
|shortfx=do OUTI while (B>0) | |shortfx=do OUTI while (B>0) | ||
Line 3,077: | Line 3,121: | ||
|ad2=- | |ad2=- | ||
|status=S | |status=S | ||
− | |c= | + | |c=? |
|n=1 | |n=1 | ||
− | |pv= | + | |pv=? |
− | |h= | + | |h=? |
|z=! | |z=! | ||
− | |s= | + | |s=? |
|tstates=16 | |tstates=16 | ||
|shortfx=B--; out(BC,HL*); HL-- | |shortfx=B--; out(BC,HL*); HL-- | ||
Line 3,090: | Line 3,134: | ||
|ad2=- | |ad2=- | ||
|status=S | |status=S | ||
− | |c= | + | |c=? |
|n=1 | |n=1 | ||
− | |pv= | + | |pv=? |
− | |h= | + | |h=? |
|z=1 | |z=1 | ||
− | |s= | + | |s=? |
|tstates=21x+16 | |tstates=21x+16 | ||
|shortfx=do OUTD while (B>0) | |shortfx=do OUTD while (B>0) | ||
}} | }} | ||
|} | |} | ||
− | :Behave like INI, INIR, IND, INDR except that they output instead of input and B is decremented '''before''' the output instead of after. | + | :Behave like INI, INIR, IND, INDR except that they output instead of input and B is decremented '''before''' the output instead of after. Condition check on B is performed '''after''', so that if OTIR starts with B=0 it loops 256 times. |
Line 3,126: | Line 3,170: | ||
;NEXTREG | ;NEXTREG | ||
:{{Opcodelisttop}} | :{{Opcodelisttop}} | ||
− | {{Opcode|opdesc=NEXTREG | + | {{Opcode|opdesc=NEXTREG n,n' |
|ad1=Immediate | |ad1=Immediate | ||
|ad2=Immediate | |ad2=Immediate | ||
Line 3,137: | Line 3,181: | ||
|s=- | |s=- | ||
|tstates=20 | |tstates=20 | ||
− | |shortfx= | + | |shortfx=HwNextReg_n:=n' |
}} | }} | ||
− | {{Opcode|opdesc=NEXTREG | + | {{Opcode|opdesc=NEXTREG n, A |
|ad1=Immediate | |ad1=Immediate | ||
|ad2=Accumulator | |ad2=Accumulator | ||
Line 3,150: | Line 3,194: | ||
|s=- | |s=- | ||
|tstates=17 | |tstates=17 | ||
− | |shortfx= | + | |shortfx=HwNextReg_n:=A |
}} | }} | ||
|} | |} | ||
Line 3,159: | Line 3,203: | ||
The Z80 on the Next has extra instructions that are unique to it. Below is a table of the opcode bytes that are required to select | The Z80 on the Next has extra instructions that are unique to it. Below is a table of the opcode bytes that are required to select | ||
those instructions. The timings are based on some partial testing. These may not be accurate. | those instructions. The timings are based on some partial testing. These may not be accurate. | ||
+ | |||
+ | Also there's initiative led by Matt Davies (author of Odin assembler/editor/debugger tool for ZX Next) to have 4-letter aliases for all new instructions using long mnemonics, the abbreviations suggested are in the last column of the table. | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- | ||
− | ! Instruction !! Byte 1 !! Byte 2 !! Byte 3 !! Byte 4 | + | ! Instruction !! Byte 1 !! Byte 2 !! Byte 3 !! Byte 4 !! T-States !! 4 letter |
|- | |- | ||
| LDIX || ED || A4 || || || 16 | | LDIX || ED || A4 || || || 16 | ||
Line 3,168: | Line 3,214: | ||
| LDWS || ED || A5 || || || 14 | | LDWS || ED || A5 || || || 14 | ||
|- | |- | ||
− | | LDIRX || ED || B4 || || || 21/16 | + | | LDIRX || ED || B4 || || || 21/16 || LIRX |
|- | |- | ||
| LDDX || ED || AC || || || 16 | | LDDX || ED || AC || || || 16 | ||
|- | |- | ||
− | | LDDRX || ED || BC || || || 21/16 | + | | LDDRX || ED || BC || || || 21/16 || LDRX |
|- | |- | ||
− | | LDPIRX || ED || B7 || || || 21/16 | + | | LDPIRX || ED || B7 || || || 21/16 || LPRX |
|- | |- | ||
− | | OUTINB || ED || 90 || || || 16 | + | | OUTINB || ED || 90 || || || 16 || OTIB |
|- | |- | ||
| MUL D,E || ED || 30 || || || 8 | | MUL D,E || ED || 30 || || || 8 | ||
Line 3,186: | Line 3,232: | ||
| ADD BC,A || ED || 33 || || || 8 | | ADD BC,A || ED || 33 || || || 8 | ||
|- | |- | ||
− | | ADD HL,$ | + | | ADD HL,$im16 || ED || 34 || low || high || 16 |
|- | |- | ||
− | | ADD DE,$ | + | | ADD DE,$im16 || ED || 35 || low || high || 16 |
|- | |- | ||
− | | ADD BC,$ | + | | ADD BC,$im16 || ED || 36|| low || high || 16 |
|- | |- | ||
− | | SWAPNIB || ED || 23 || || || 8 | + | | SWAPNIB || ED || 23 || || || 8 || SWAP |
|- | |- | ||
− | | MIRROR || ED || 24 || || || 8 | + | | MIRROR A || ED || 24 || || || 8 || MIRR |
|- | |- | ||
− | | PUSH $ | + | | PUSH $im16 || ED || 8A || high || low || 23 |
|- | |- | ||
− | | NEXTREG $ | + | | NEXTREG $im8,$im8 || ED || 91 || register || value || 20 || NREG |
|- | |- | ||
− | | NEXTREG $ | + | | NEXTREG $im8,A || ED || 92 || register || || 17 || NREG |
|- | |- | ||
− | | PIXELDN || ED || 93 || || || 8 | + | | PIXELDN || ED || 93 || || || 8 || PXDN |
|- | |- | ||
− | | PIXELAD || ED || 94 || || || 8 | + | | PIXELAD || ED || 94 || || || 8 || PXAD |
|- | |- | ||
− | | SETAE || ED || 95 || || || 8 | + | | SETAE || ED || 95 || || || 8 || STAE |
|- | |- | ||
− | | TEST $ | + | | TEST $im8 || ED || 27 || value || || 11 |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|- | |- | ||
| BSLA DE,B || ED || 28 || || || 8 | | BSLA DE,B || ED || 28 || || || 8 | ||
Line 3,230: | Line 3,268: | ||
| JP (C) || ED || 98 || || || 13 | | JP (C) || ED || 98 || || || 13 | ||
|} | |} | ||
+ | |||
+ | Note that the "PUSH $im16" instruction is not a mistake. The operand is encoded in big-endian. |
Latest revision as of 13:01, 25 June 2024
This is a general list of Z80 instructions with descriptions. For summaries, you can view the Z80 Instruction Table. You can also search for opcodes.
Contents
Erratum
2021-09-16: figuring out the hard way, the three Z80N instructions `ADD HL/DE/BC,A` actually do NOT preserve carry flag, but change it to undefined value (verified with core 3.1.5). There's also strong suspicion (but not verified yet), that LDIX/LDDX/LDIRX/LDDRX/LDPIRX do affects flags the same way as LDI/LDIR - to be verified.
2022-01-11: it's documented for several years that regular Z80 INI/IND/INIR/INDR/OUTI/OUTD/OTIR/OTDR instructions do modify carry flag (contrary to the official Z80 documentation and many Internet resources describing Z80 instructions, including previous version of this page, unfortunately).
Term references
- Any 8-bit register means A, B, C, D, E, H, and L. F, I and R do not count even though they are technically 8 bit registers. Also, the high and low bytes of IX and IY (IXH, IXL, IYH, IYL) can be used as 8-bit registers although this behavior was undocumented on the original Z80.
- IXY means IX or IY.
- For the status field:
- S means Standard. It's in the Z80 manual. Everything should support it.
- U means Undocumented. It works on Z80 chips, but it's not in the manual. These have been known for years and were acknowledged by Zilog, so they should work on everything, but some assemblers may vary the syntax.
- E means Extension. It only works on the Z80 core on the Next. It'll probably only be accepted by assemblers that have been updated specifically for the Next.
- Each of the flag effects is documented as follows:
- - means the flag is unchanged.
- 1 or 0 mean the flag is set or reset as appropriate.
- ? means we don't know what effect the instruction has on the flag.
- ! means the instruction has an unusual effect on the flag which is documented in the description.
- S means the effect on the flag is "standard". C is set if a carry/borrow occurred beyond the MSB; Z is set if the result of the operation is zero; H is set if a carry/borrow occurred beyond bit 3.
- P, V, and L are used for the P/V flag which has several standard effects. P means it's parity. V means it's overflow. L means it checks BC as loop counter for some of the block copy and search instructions: P/V = (BC != 0)
Register and Data manipulation
- LD (LoaD)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
LD r, r' | Register | Register | S | - | - | - | - | - | - | 4 | r := r' |
LD r,n | Register | Immediate | S | - | - | - | - | - | - | 7 | r := n |
LD r, (HL) | Register | Indirect | S | - | - | - | - | - | - | 7 | r := HL* |
LD r, (IXY+d) | Register | Indexed | S | - | - | - | - | - | - | 19 | r := (IXY+d)* |
LD (HL),r | Indirect | Register | S | - | - | - | - | - | - | 7 | HL* := r |
LD (IXY+d),r | Indexed | Register | S | - | - | - | - | - | - | 19 | (IXY+D)* := r |
LD (HL), n | Indirect | Immediate | S | - | - | - | - | - | - | 10 | HL* := n |
LD (IXY+d), n | Indexed | Immediate | S | - | - | - | - | - | - | 19 | (IXY+d)* := n |
LD A, (BC/DE) | Accumulator | Indirect | S | - | - | - | - | - | - | 7 | A := rr* |
LD A, (nn) | Accumulator | Address | S | - | - | - | - | - | - | 13 | A := (nn)* |
LD (BC/DE), A | Indirect | Accumulator | S | - | - | - | - | - | - | 7 | rr* := A |
LD (nn), A | Address | Accumulator | S | - | - | - | - | - | - | 13 | (nn)* := A |
LD A, I | Accumulator | Register | S | - | 0 | ! | 0 | S | S | 9 | A := I; P/V:=IFF2 |
LD A, R | Accumulator | Register | S | - | 0 | ! | 0 | S | S | 9 | A := R; P/V:=IFF2 |
LD I, A | Register | Accumulator | S | - | - | - | - | - | - | 9 | I := A |
LD R, A | Register | Accumulator | S | - | - | - | - | - | - | 9 | R := A |
LD BC/DE/HL/SP, nn | Register | Immediate | S | - | - | - | - | - | - | 10 | rr := nn |
LD IXY, nn | Register | Immediate | S | - | - | - | - | - | - | 14 | rr := nn |
LD HL, (nn) | Register | Address | S | - | - | - | - | - | - | 16 | HL := (nn)* |
LD BC/DE/SP/IXY, (nn) | Register | Address | S | - | - | - | - | - | - | 20 | rr := (nn)* |
LD (nn), HL | Address | Register | S | - | - | - | - | - | - | 16 | (nn)* := HL |
LD (nn), BC/DE/SP/IXY | Address | Register | S | - | - | - | - | - | - | 20 | (nn)* := rr |
LD SP, HL | Register | Register | S | - | - | - | - | - | - | 6 | SP := HL |
LD SP, IXY | Register | Register | S | - | - | - | - | - | - | 10 | SP := IXY |
- The basic data load/transfer instruction. Transfers data from the location specified by the second argument, to the location specified by the first. Available combinations are as follows:
- Any 8-bit register can be:
- loaded with an immediate value;
- loaded with the contents of any other 8-bit register except I and R;
- loaded with the contents of, or stored in, memory pointed to by HL;
- loaded with the contents of, or stored in, memory offset-indexed by IX or IY.
- Additionally, the accumulator A (only) can be:
- loaded with the contents of, or stored in, memory pointed to by BC or DE;
- loaded with the contents of, or stored in, memory pointed to by an immediate address;
- loaded with the contents of I or R.
- Any 16-bit register pair can be:
- loaded with an immediate value;
- loaded with the contents of, or stored in, memory pointed to by an immediate address.
- Additionally, SP (only) can be:
- loaded with the contents of HL, IX, or IY.
- The planned ld hl, sp didn't make it to Next yet, one possible workaround is: ld hl,0; add hl,sp;
- Memory referred to by HL or through IX can be assigned immediate values.
- Any 8-bit register can be:
- Although 16-bit register pairs cannot be directly moved between each other, they can be moved by moving the two 8-bit registers. (SP gets a special case because it can't be addressed via 8-bit registers.) Some assemblers will provide built-in macro instructions allowing, for example, ld bc, de.
- LD instructions do not alter any flags unless I or R are loaded into A.
- EX (EXchange)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
EX DE, HL | Register | Register | S | - | - | - | - | - | - | 4 | swap(DE,HL) |
EX AF, AF' | Register | Register | S | ! | ! | ! | ! | ! | ! | 4 | swap(AF,AF') |
EX (SP), HL | Indirect | Register | S | - | - | - | - | - | - | 19 | swap(SP*,HL) |
EX (SP), IXY | Indirect | Register | S | - | - | - | - | - | - | 23 | swap(SP*,IXY) |
- Exchanges the contents of two sources. The only permitted combinations are
- Exchanging DE and HL;
- Exchanging AF and AF';
- Exchanging HL, IX, or IY with the contents of memory pointed to by SP.
- EXX (EXchange all)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
EXX | - | - | S | - | - | - | - | - | - | 4 | swap(BC,BC');swap(DE,DE');swap(HL,HL') |
- Exchanges BC, DE, and HL with their shadow registers. AF and AF' are not exchanged.
- PUSH
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
PUSH BC/DE/HL/AF | Register | - | S | - | - | - | - | - | - | 11 | SP-=2; SP*:=rr |
PUSH IXY | Register | - | S | - | - | - | - | - | - | 15 | SP-=2; SP*:=rr |
PUSH nn | Immediate | - | E | - | - | - | - | - | - | 23 | SP-=2; SP*:=nn |
- Pushes the given argument on the stack. This can be any 16-bit register pair except SP. SP is reduced by 2 and then the argument is written to the new location SP points to.
- POP
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
POP BC/DE/HL | Register | - | S | - | - | - | - | - | - | 10 | rr:=SP*; SP+=2 |
POP AF | Register | - | S | ! | ! | ! | ! | ! | ! | 10 | rr:=SP*; SP+=2 |
POP IXY | Register | - | S | - | - | - | - | - | - | 14 | rr:=SP*; SP+=2 |
- Pops the given argument from the stack. This can be any 16-bit register pair except SP. The current value at SP is copied to the register pair and then SP is raised by 2.
- Popping into AF does set value of flag register F directly to low 8 bits of value from stack.
Block Copy
- LDI (LoaD and Increment)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
LDI | - | - | S | - | 0 | L | 0 | - | - | 16 | DE*:=HL*; DE++; HL++; BC-- |
- Copies the byte pointed to by HL to the address pointed to by DE, then adds 1 to DE and HL and subtracts 1 from BC. P/V is set to (BC!=0), i.e. set when non zero.
- LDIR (LoaD and Increment Repeated)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
LDIR | - | - | S | - | 0 | L | 0 | - | - | 21x+16 | do LDI while(BC>0) |
- Automatically loops LDI until BC reaches zero. Note the last iteration starts when BC=1 and ends with BC=0 (starting the LDIR with BC=0 will start 64kiB transfer, most likely overwriting vital parts of system memory and/or code itself).
- Flag effects are the same as LDI except that P/V will always be reset, because BC by definition reaches 0 before this instruction ends (normally - unless something overwrites LDIR opcode while BC>0).
- Interrupts may interrupt LDIR instruction while looping (after each single LDI sub-part finished) and LDIR will resume after and finish loop properly.
- LDD (LoaD and Decrement)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
LDD | - | - | S | - | 0 | L | 0 | - | - | 16 | DE*:=HL*; DE--; HL--; BC-- |
- Same as LDI, but subtracts 1 from DE and HL instead of adding.
- LDDR (LoaD and Decrement Repeated)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
LDDR | - | - | S | - | 0 | 0 | 0 | - | - | 21x+16 | do LDD while(BC>0) |
- Same as LDIR but loops LDD instead of LDI.
- LDWS
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
LDWS | - | - | E | - | 0 | ! | S | S | S | 14 | DE*:=HL*; INC L; INC D; |
- Next-only extended opcode. Copies the byte pointed to by HL to the address pointed to by DE and increments only L and D. This is used for vertically copying bytes to the Layer 2 display.
- The flags are identical to what the INC D instruction would produce.
- Note the source data are read only from single 256B (aligned) block of memory, because only L is incremented, not HL.
- LDIX, LDIRX, LDDX, LDDRX
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
LDIX | - | - | E | - | - | - | - | - | - | 16 | {if HL*!=A DE*:=HL*;} DE++; HL++; BC-- |
LDIRX | - | - | E | - | - | - | - | - | - | 21/16 | do LDIX while(BC>0) |
LDDX | - | - | E | - | - | - | - | - | - | 16 | {if HL*!=A DE*:=HL*;} DE++; HL--; BC-- |
LDDRX | - | - | E | - | - | - | - | - | - | 21/16 | do LDDX while(BC>0) |
- Next-only extended opcodes. Behave similarly as their non-X equivalents except the byte is not copied if it is equal to A and LDDX/LDDRX advance DE by incrementing it (like LDI), while HL is decremented (like LDD).
- Second difference to non-X instructions (as usual with next-only opcodes due to implementation), the extended ones don't modify any flags.
- LDPIRX
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
LDPIRX | - | - | E | - | - | - | - | - | - | 21/16 | do{t:=(HL&$FFF8+E&7)*; {if t!=A DE*:=t;} DE++; BC--}while(BC>0) |
- Similar to LDIRX except the source byte address is not just HL, but is obtained by using the top 13 bits of HL and the lower 3 bits of DE and HL does not increment during whole loop (HL works as base address of aligned 8 byte lookup table, DE works as destination and also wrapping index 0..7 into table). This is intended for "pattern fill" functionality.
Block Search
- CPI (ComPare and Increment)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
CPI | - | - | S | - | 1 | L | S | ! | S | 16 | HL*==A?; HL++; BC-- |
- Compares the byte pointed to by HL with the contents of A and sets Z if it matches or S if the comparison goes negative. Then adds 1 to HL and subtracts 1 from BC. P/V is set to (BC!=0), i.e. set when non zero.
- CPIR (ComPare and Increment Repeated)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
CPIR | - | - | S | - | 1 | L | S | ! | S | 21x+16 | do CPI while (!Z && BC>0) |
- Automatically loops CPI until either Z is set (A is found in the byte pointed to by HL) or P/V is reset (BC reached 0).
- Flag effects are the same as CPI except that one of the two terminating flag conditions will always be true.
- CPD (ComPare and Decrement)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
CPD | - | - | S | - | 1 | L | S | ! | S | 16 | HL*==A?; HL--; BC-- |
- Same as CPI, but subtracts 1 from HL instead of adding it.
- CPDR (ComPare and Decrement Repeated)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
CPDR | - | - | S | - | 1 | L | S | ! | S | 21x+16 | do CPD while (!Z && BC>0) |
- Same as CPIR but loops CPD instead of CPI.
Arithmetic
- ADD
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
ADD A, r | Accumulator | Register | S | S | 0 | V | S | S | S | 4 | A+=r |
ADD A, n | Accumulator | Immediate | S | S | 0 | V | S | S | S | 7 | A+=n |
ADD A, (HL) | Accumulator | Indirect | S | S | 0 | V | S | S | S | 7 | A+=HL* |
ADD A, (IXY+d) | Accumulator | Indexed | S | S | 0 | V | S | S | S | 19 | A+=(IXY+d)* |
ADD HL, BC/DE/HL/SP | Register | Register | S | S | 0 | - | ! | - | - | 11 | HL+=rr |
ADD IXY, BC/DE/IXY/SP | Register | Register | S | S | 0 | - | ! | - | - | 15 | IXY+=rr |
ADD HL/DE/BC, A | Register | Register | E | ? | - | - | - | - | - | 8 | rr+=unsigned A |
ADD HL/DE/BC, nn | Register | Immediate | E | - | - | - | - | - | - | 16 | rr+=nn |
- Adds values together. Legal combinations are:
- When adding 8-bit values the first parameter must be A and the second may be:
- The contents of an 8-bit register;
- An immediate value;
- The contents of memory pointed to by HL or by indexing based on IX or IY.
- When adding 16-bit values the first parameter must be HL, IX or IY and the second must be another 16-bit register pair. If the first parameter is IX or IY, the second cannot be HL or the other index register.
- For 16 bit additions (regular Z80), H is set if a carry occurred in bit 11 (ie, a half carry in the high byte)
- On the Spectrum Next the extended opcodes also allow the first parameter to be HL, DE, or BC and the second to be A (A will be zero extended to 16 bits) or an 16bit immediate value.
- When adding 8-bit values the first parameter must be A and the second may be:
- ADC (ADd with Carry)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
ADC A, r | Accumulator | Register | S | S | 0 | V | S | S | S | 4 | A+=r+(CF?1:0) |
ADC A, n | Accumulator | Immediate | S | S | 0 | V | S | S | S | 7 | A+=n+(CF?1:0) |
ADC A, (HL) | Accumulator | Indirect | S | S | 0 | V | S | S | S | 7 | A+=HL*+(CF?1:0) |
ADC A, (IXY+d) | Accumulator | Indexed | S | S | 0 | V | S | S | S | 19 | A+=(IXY+d)*+(CF?1:0) |
ADC HL, BC/DE/HL/SP | Register | Register | S | S | 0 | V | ! | S | S | 15 | HL+=rr+(CF?1:0) |
- Adds values together, adding an additional 1 if Carry is set. Legal combinations are the same as for ADD, although there are no extended opcode versions of ADC and in 16-bit values the first parameter can only be HL. For 16-bit values the H flag is set if carry from bit 11; otherwise, it is reset.
- SUB
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SUB r | Register | - | S | S | 1 | V | S | S | S | 4 | A -= r |
SUB n | Immediate | - | S | S | 1 | V | S | S | S | 7 | A -= n |
SUB (HL) | Indirect | - | S | S | 1 | V | S | S | S | 7 | A -= HL* |
SUB (IXY+d) | Indexed | - | S | S | 1 | V | S | S | S | 19 | A -= (IXY+d)* |
- Subtracts a value from A. Legal combinations are the same as for ADD for 8-bit, except that A does not need to be specified as the first parameter because subtraction can only be done from A. SUB cannot be used for 16-bit numbers.
- SBC (SuBtract with Carry, er, borrow)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SBC A, r | Accumulator | Register | S | S | 1 | V | S | S | S | 4 | A-=(r+(CF?1:0)) |
SBC A, n | Accumulator | Immediate | S | S | 1 | V | S | S | S | 7 | A-=(n+(CF?1:0)) |
SBC A, (HL) | Accumulator | Indirect | S | S | 1 | V | S | S | S | 7 | A-=(HL*+(CF?1:0)) |
SBC A, (IXY+d) | Accumulator | Indexed | S | S | 1 | V | S | S | S | 19 | A-=((IXY+d)+(CF?1:0)) |
SBC HL, BC/DE/HL/SP | Register | Register | S | S | 1 | V | ! | S | S | 15 | HL-=(rr+(CF?1:0)) |
- Subtracts values, subtracting an additional 1 if Carry is set. Legal combinations are the same as for ADD, although there are no extended opcode versions of SBC and in 16-bit values the first parameter can only be HL. For 16-bit values the H flag is set if borrow from bit 12; otherwise, it is reset.
- AND, OR, XOR
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
AND r | Register | - | S | 0 | 0 | P | 1 | S | S | 4 | A := A & r |
AND n | Immediate | - | S | 0 | 0 | P | 1 | S | S | 7 | A := A & n |
AND (HL) | Indirect | - | S | 0 | 0 | P | 1 | S | S | 7 | A := A & HL* |
AND (IXY+d) | Indexed | - | S | 0 | 0 | P | 1 | S | S | 19 | A := A & (IXY+d)* |
OR r | Register | - | S | 0 | 0 | P | 0 | S | S | 4 | A := A OR r |
OR n | Immediate | - | S | 0 | 0 | P | 0 | S | S | 7 | A := A OR n |
OR (HL) | Indirect | - | S | 0 | 0 | P | 0 | S | S | 7 | A := A OR HL* |
OR (IXY+d) | Indexed | - | S | 0 | 0 | P | 0 | S | S | 19 | A := A OR (IXY+d)* |
XOR r | Register | - | S | 0 | 0 | P | 0 | S | S | 4 | A := A ^ r |
XOR n | Immediate | - | S | 0 | 0 | P | 0 | S | S | 7 | A := A ^ n |
XOR (HL) | Indirect | - | S | 0 | 0 | P | 0 | S | S | 7 | A := A ^ HL* |
XOR (IXY+d) | Indexed | - | S | 0 | 0 | P | 0 | S | S | 19 | A := A ^ (IXY+d)* |
- Performs the appropriate bitwise operator on A. Legal combinations are the same as SUB.
- XOR A is faster and shorter than LD A,0
- MIRROR
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
MIRROR A | Register | - | E | - | - | - | - | - | - | 8 | A[76543210]:=A[01234567] |
- Next extended opcode. Mirrors (reverses the order) of bits in the accumulator. Older core versions supported MIRROR DE, but this was removed.
- CP (ComPare)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
CP r | Register | - | S | S | 1 | V | S | S | S | 4 | A-=r? |
CP n | Immediate | - | S | S | 1 | V | S | S | S | 7 | A-=n? |
CP (HL) | Indirect | - | S | S | 1 | V | S | S | S | 7 | A-=HL*? |
CP (IXY+d) | Indexed | - | S | S | 1 | V | S | S | S | 19 | A-=(IXY+d)? |
- Sets the flags as if a SUB was performed but does not perform it. Legal combinations are the same as SUB. This is commonly used to set the flags to perform an equality or greater/less test.
- CP is not equivalent to "if" in high level languages. Flag based jumps can follow any instruction that sets the flags, not just CP.
- TEST
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
TEST n | Immediate | - | E | S | ? | P | S | S | S | 11 | A&n? |
- Next extended opcode. Similar to CP, but performs an AND instead of a subtraction.
- INC (INCrement)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
INC r | Register | - | S | - | 0 | ! | S | S | S | 4 | r++ |
INC (HL) | Indirect | - | S | - | 0 | ! | S | S | S | 11 | HL*++ |
INC (IXY+d) | Indexed | - | S | - | 0 | ! | S | S | S | 23 | (IXY+d)*++ |
INC BC/DE/HL/SP | Register | - | S | - | - | - | - | - | - | 6 | rr++ |
INC IXY | Register | - | S | - | - | - | - | - | - | 10 | rr++ |
- Increments the target by one. The argument can be any 8-bit register, any 16-bit register pair, or the address pointed to by HL or indexed via IX or IY. P/V is set if the target held $7F. N is reset.
- INC A is faster than ADD 1.
- DEC (DECrement)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
DEC r | Register | - | S | - | 1 | ! | S | S | S | 4 | r-- |
DEC (HL) | Indirect | - | S | - | 1 | ! | S | S | S | 11 | HL*-- |
DEC (IXY+d) | Indexed | - | S | - | 1 | ! | S | S | S | 23 | (IXY+D)*-- |
DEC BC/DE/HL/SP | Register | - | S | - | - | - | - | - | - | 6 | rr-- |
DEC IXY | Register | - | S | - | - | - | - | - | - | 10 | rr-- |
- Decrements the target by one. Allowed arguments are the same as INC. Flag effects are the same as INC except H refers to borrow, not carry; and P/V is set if the target held $80.
- DEC A is faster than SUB 1.
- RLC (Rotate Left Circular)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RLC r | Register | - | S | ! | 0 | P | 0 | S | S | 8 | x:=r[7]; r:=r<<1; r[0]:=x; CF:=x |
RLC (HL) | Indirect | - | S | ! | 0 | P | 0 | S | S | 15 | x:=HL*[7]; HL*:=HL*<<1; HL*[0]:=x; CF:=x |
RLC (IXY+d) | Indexed | - | S | ! | 0 | P | 0 | S | S | 23 | x:=(IXY+d)*[7]; (IXY+d)*:=(IXY+d)*<<1; (IXY+d)*[0]:=x; CF:=x |
RLC r,(IX+d) | Register | Indexed | U | ! | 0 | P | 0 | S | S | 23 | x:=(IX+d)*[7]; (IX+d)*:=(IX+d)*<<1; (IX+d)*[0]:=x; CF:=x; r:=(IX+d)* |
- Rotates the target bitwise left by one position. The MSB is copied to bit 0, and also to Carry. Can be applied to any 8-bit register or to a location in memory pointed to by HL or indexed via IX or IY. The final alternative is undocumented, and stores the result in a register as well as performing the operation.
- RL (Rotate Left)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RL r | Register | - | S | ! | 0 | P | 0 | S | S | 8 | x:=r[7]; r:=r<<1; r[0]:=CF; CF:=x |
RL (HL) | Indirect | - | S | ! | 0 | P | 0 | S | S | 15 | x:=HL*[7]; HL*:=HL*<<1; HL*[0]:=CF; CF:=x |
RL (IXY+d) | Indexed | - | S | ! | 0 | P | 0 | S | S | 23 | x:=(IXY+d)*[7]; (IXY+d)*:=(IXY+d)*<<1; (IXY+d)*[0]:=CF; CF:=x |
RL r,(IX+d) | Register | Indexed | U | ! | 0 | P | 0 | S | S | 23 | x:=(IX+d)*[7]; (IX+d)*:=(IX+d)*<<1; (IX+d)*[0]:=CF; CF:=x; r:=(IX+d)* |
- Same as RLC, except the MSB is copied to Carry only, and the previous contents of Carry are copied to bit 0.
- RRC, RR (Rotate Right Circular, Rotate Right)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RRC r | Register | - | S | ! | 0 | P | 0 | S | S | 8 | x:=r[0]; r:=r>>1; r[7]:=x; CF:=x |
RRC (HL) | Indirect | - | S | ! | 0 | P | 0 | S | S | 15 | x:=HL*[0]; HL*:=HL*>>1; HL*[7]:=x; CF:=x |
RRC (IXY+d) | Indexed | - | S | ! | 0 | P | 0 | S | S | 23 | x:=(IXY+d)*[0]; (IXY+d)*:=(IXY+d)*>>1; (IXY+d)*[7]:=x; CF:=x |
RRC r,(IX+d) | Register | Indexed | U | ! | 0 | P | 0 | S | S | 23 | x:=(IX+d)*[0]; (IX+d)*:=(IX+d)*>>1; (IX+d)*[7]:=x; CF:=x; r:=(IX+d)* |
RR r | Register | - | S | ! | 0 | P | 0 | S | S | 8 | x:=r[0]; r:=r>>1; r[7]:=CF; CF:=x |
RR (HL) | Indirect | - | S | ! | 0 | P | 0 | S | S | 15 | x:=HL*[0]; HL*:=HL*>>1; HL*[7]:=CF; CF:=x |
RR (IXY+d) | Indexed | - | S | ! | 0 | P | 0 | S | S | 23 | x:=(IXY+d)*[0]; (IXY+d)*:=(IXY+d)*>>1; (IXY+d)*[7]:=CF; CF:=x |
RR r,(IX+d) | Register | Indexed | U | ! | 0 | P | 0 | S | S | 23 | x:=(IX+d)*[0]; (IX+d)*:=(IX+d)*>>1; (IX+d)*[7]:=CF; CF:=x; r=(IX+d)* |
- Same as RLC and RL except they rotate right instead of left.
- SLA (Shift Left Arithmetic)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SLA r | Register | - | S | ! | 0 | P | 0 | S | S | 8 | r:=r<<1 |
SLA (HL) | Indirect | - | S | ! | 0 | P | 0 | S | S | 15 | HL*:=HL*<<1 |
SLA (IXY+d) | Indexed | - | S | ! | 0 | P | 0 | S | S | 23 | (IXY+d)*:=(IXY+d)*<<1 |
SLA r,(IX+d) | Register | Indexed | U | ! | 0 | P | 0 | S | S | 23 | (IX+d)*:=(IX+d)*<<1; r=(IX+d)* |
- Same as RL except bit 0 is set to zero, not the previous contents of Carry.
- SRA (Shift Right Arithmetic)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SRA r | Register | - | S | ! | 0 | P | 0 | S | S | 8 | r:=r>>1 OR r[7] |
SRA (HL) | Indirect | - | S | ! | 0 | P | 0 | S | S | 15 | HL*:=HL*>>1 OR HL*[7] |
SRA (IXY+d) | Indexed | - | S | ! | 0 | P | 0 | S | S | 23 | (IXY+d)*:=(IXY+d)*>>1 OR (IXY+d)*[7] |
SRA r,(IX+d) | Register | Indexed | U | ! | 0 | P | 0 | S | S | 23 | (IX+d)*:=(IX+d)*>>1 OR (IX+d)*[7]; r:=(IX+d)* |
- Same as RR except the MSB is left unchanged (on the assumption that it's the sign bit), not replaced with the previous contents of Carry.
- SRL (Shift Right Logical)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SRL r | Register | - | S | ! | 0 | P | 0 | S | 0 | 8 | r:=unsigned(r)>>1 |
SRL (HL) | Indirect | - | S | ! | 0 | P | 0 | S | 0 | 15 | HL*:=unsigned(HL*)>>1 |
SRL (IXY+d) | Indexed | - | S | ! | 0 | P | 0 | S | 0 | 23 | (IXY+d)*:=unsigned((IXY+d)*)>>1 |
SRL r,(IXY+d) | Register | Indexed | U | ! | 0 | P | 0 | S | 0 | 23 | (IXY+d)*:=unsigned((IXY+d)*)>>1; r:=(IXY+d)* |
- Same as SLA except it shifts right instead of left.
- RLCA, RLA, RRCA, RRA
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RLCA | - | - | S | ! | 0 | - | 0 | - | - | 4 | x:=A[7]; A:=A<<1; A[0]:=x; CF:=x |
RLA | - | - | S | ! | 0 | - | 0 | - | - | 4 | x:=A[7]; A:=A<<1; A[0]:=CF; CF:=x |
RRCA | - | - | S | ! | 0 | - | 0 | - | - | 4 | x:=A[0]; A:=A>>1; A[7]:=x; CF:=x |
RRA | - | - | S | ! | 0 | - | 0 | - | - | 4 | x:=A[0]; A:=A>>1; A[7]:=CF; CF:=x |
- Same as their matching instruction except they work only on A, are faster, and do not alter S, Z or P/V.
- SLL (Shift Left Logical)
- This mnemonic has no associated opcode. There is no difference between a logical and arithmetic shift left, so both can use SLA, but some assemblers will allow SLL as an equivalent. Unfortunately, some will also assemble it as SL1. So it's probably worth just avoiding.
- SL1 or SLI (Shift Left and Add 1) or (Shift Left and Increment)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SL1 r | Register | - | U | ! | 0 | P | 0 | S | S | 8 | r:=(r<<1)+1 |
SL1 (HL) | Indirect | - | U | ! | 0 | P | 0 | S | S | 15 | HL*:=(HL*<<1)+1 |
SL1 (IXY+d) | Indexed | - | U | ! | 0 | P | 0 | S | S | 23 | (IXY+d)*:=((IXY+d)*<<1)+1 |
SL1 r,(IXY+d) | Register | Indexed | U | ! | 0 | P | 0 | S | S | 23 | (IXY+d)*:=((IXY+d)*<<1)+1; r=(IXY+d)* |
- Undocumented opcodes that behave like SLA, but set bit 0 to 1 instead of 0.
- RLD (Rotate Left bcd Digit)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RLD | - | - | S | - | 0 | P | 0 | S | S | 18 | x=HL*; HL*[0123]:=A[0123]; HL*[7654]:=x[0123]; A[0123]:=x[7654] |
- Rotates the lower nibble of the byte pointed to by HL, the upper nibble of that byte, and the lower nibble of A, in that order.
- RRD (Rotate Right bcd Digit)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RRD | - | - | S | - | 0 | P | 0 | S | S | 18 | x=HL*; HL*[7654]:=A[0123]; HL*[0123]:=x[7654]; A[0123]:=x[0123] |
- Same as RLD, but the order is: the lower nibble pointed to by HL, the lower nibble of the A, and the upper nibble of the byte.
- Barrel (variable amount) shift and rotate (cores v2+ only)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
BSLA DE,B | - | - | E | - | - | - | - | - | - | 8 | DE:=DE<<(B&31) |
BSRA DE,B | - | - | E | - | - | - | - | - | - | 8 | DE:=signed(DE)>>(B&31) |
BSRL DE,B | - | - | E | - | - | - | - | - | - | 8 | DE:=unsigned(DE)>>(B&31) |
BSRF DE,B | - | - | E | - | - | - | - | - | - | 8 | DE:=~(unsigned(~DE)>>(B&31)) |
BRLC DE,B | - | - | E | - | - | - | - | - | - | 8 | DE:=DE<<(B&15) OR DE>>(16-B&15) |
- Shift instructions use only bits 4..0 of B, BSLA shifts DE left, BSRA/BSRL/BSRF shifts DE right in arithmetic/logical/fill-one way. BRLC rotates DE left by B places, uses only bits 3..0 of B (to rotate right, use B=16-places).
If you are implementing BSRF in C (or similar), be careful with implicit variable type promotion. You will need to do something like this: DE:=~((uint16_t)~DE>>(B&31))
- CPL (ComPLement)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
CPL | - | - | S | - | 1 | - | 1 | - | - | 4 | A:=~A |
- Inverts the contents of the accumulator.
- NEG (NEGate)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
NEG | - | - | S | ! | 1 | ! | S | S | S | 8 | A:=0-A |
- Subtracts the contents of the accumulator from zero, making it negative for the purpose of two's complement. P/V is set if A previously held $80. C is set if accumulator did not previously hold $00.
- CCF (Complement Carry Flag)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
CCF | - | - | S | ! | 0 | - | ! | - | - | 4 | CF:=!CF |
- Inverts the carry flag. (Does not, as might be assumed, clear it!) Also sets H to the previous value of the carry flag.
- SCF (Set Carry Flag)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SCF | - | - | S | 1 | 0 | - | 0 | - | - | 4 | CF:=1 |
- Sets the carry flag.
- BIT (test BIT)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
BIT b,r | Immediate | Register | S | - | 0 | ? | 1 | ! | ? | 8 | r[b]==1? |
BIT b,(HL) | Immediate | Indirect | S | - | 0 | ? | 1 | ! | ? | 12 | HL*[b]==1? |
BIT b,(IXY+d) | Immediate | Indexed | S | - | 0 | ? | 1 | ! | ? | 20 | (IXY+d)*[b]==1? |
- Tests if a bit is set on target value. The first parameter states which bit. The second can be any 8-bit register, or the location in memory pointed to by HL or indexed by IX or IY. Sets Z if specified bit was 0. S and P/V are destroyed.
- SET (SET bit)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SET b,r | Immediate | Register | S | - | - | - | - | - | - | 8 | r:=r OR (1<<b) |
SET b,(HL) | Immediate | Register | S | - | - | - | - | - | - | 15 | HL*:=HL* OR (1<<b) |
SET b,(IXY+d) | Immediate | Indexed | S | - | - | - | - | - | - | 23 | (IXY+d)*:=(IXY+d)* OR (1<<b) |
SET r,b,(IX+d) | Immediate | Indexed | U | - | - | - | - | - | - | 23 | (IX+d)*:=(IX+d)* OR (1<<b); r:=(IX+d)* |
SETAE | - | - | E | - | - | - | - | - | - | 8 | A:=unsigned($80)>>(E&7) |
- Sets the numbered bit on target value. The possible targets are the same as BIT. The three parameter variant is undocumented and stores the result in a register as well as performing the SET.
- SETAE is a Next extended opcode which takes the bit number to set from E (only the low 3 bits) and sets whole A to value of that bit, but counted from top to bottom (E=0 will produce A:=$80, E=7 will produce A:=$01). This works as pixel mask for ULA bitmap modes, when E is 0..255 x-coordinate.
- RES (RESet bit)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RES b,r | Immediate | Register | S | - | - | - | - | - | - | 8 | r:=r & (~(1<<b)) |
RES b,(HL) | Immediate | Register | S | - | - | - | - | - | - | 15 | HL*:=HL* & (~(1<<b)) |
RES b,(IXY+d) | Immediate | Indexed | S | - | - | - | - | - | - | 23 | (IXY+d)*:=(IXY+d)* & (~(1<<b)) |
RES r,b,(IX+d) | Immediate | Indexed | U | - | - | - | - | - | - | 23 | (IX+d)*:=(IX+d)* & (~(1<<b)); r:=(IX+d)* |
- Resets the numbered bit on target value. The possible targets are the same as BIT.
- DAA (Decimal Adjust Accumulator)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
DAA | - | - | S | ! | - | P | ! | S | S | 8 | if(A&$0F>$09 or HF) A±=$06; if(A&$F0>$90 or CF) A±=$60 (± depends on NF) |
- Modifies the contents of the accumulator based on the flags left by previous operation to correct for binary coded decimal (BCD).
- MUL (MULtiply)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
MUL d,e | - | - | E | - | - | - | - | - | - | 8 | DE:=D*E |
- Next extended opcode. Multiplies D by E, storing 16 bit result into DE. Does not alter any flags (the opcode is not compatible with any of the R800/Z180/eZ80/... variants of MUL, it is solely Next specific).
- SWAPNIB (SWAP NIBbles)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
SWAPNIB | - | - | E | - | - | - | - | - | - | 8 | A:=A[3210]<<4 OR A[7654]>>4 |
- Next extended opcode. Swaps the high and low nibbles of the accumulator.
- PIXELAD (PIXEL ADdress)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
PIXELAD | - | - | E | - | - | - | - | - | - | 8 | HL:=$4000+((D&$C0)<<5)+((D&$07)<<8)+((D&$38)<<2)+(E>>3) |
- Next extended opcode. Takes E and D as the X,Y coordinate of a point and calculates the address of the byte containing this pixel in the pixel area of standard ULA screen 0, storing it in HL.
- PIXELDN (PIXEL DowN)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
PIXELDN | - | - | E | - | - | - | - | - | - | 8 | if(HL&$0700!=$0700) HL+=256; else if(HL&$e0!=$e0) HL:=HL&$F8FF+$20; |
- Updates the address in HL to move down by one line of pixels.
Control Flow
- JP (JumP)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
JP nn | Address | - | S | - | - | - | - | - | - | 10 | PC:=nn |
JP (HL) | Register | - | S | - | - | - | - | - | - | 4 | PC:=HL (not PC:=HL*) |
JP (IXY) | Register | - | S | - | - | - | - | - | - | 8 | PC:=IXY (not PC:=IXY*) |
JP (C) | Register | - | E | ? | ? | ? | ? | ? | ? | 13 | PC:=PC&$C000+IN(C)<<6 |
- Jumps (sets the PC) to the given address. The address can be given immediately or read from HL, IX, or IY. Note that although the variants that use register pairs look like they are using indirect addressing, JP (HL) jumps to the address stored in the register HL, not the address stored at the address HL points to. The JP (C) sets bottom 14 bits of current PC* to value read from I/O port: PC[13:0] = (IN (C) << 6) (can be used to execute code block read from a disk stream) * "current PC" is address of next instruction after JP (C), as the PC is advanced by fetching op code from memory and is already advanced when execution happens - if the JP instruction resides at the very end of 16k memory block (..FE or ..FF address), then newly composed PC value will land into following 16k block.
- JP cc (JumP conditionally)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
JP Z/NZ/NC/C/PO/PE/P/M, nn | Address | - | S | - | - | - | - | - | - | 10 | if cc PC:=nn |
- Conditionally jumps (sets the PC) to the given address. The condition is set in terms of the flags: Zero (Z, NZ), Carry (C, NC), Parity (PO, PE), and Sign (P/M). The address can only be given immediately for a conditional jump.
- JR (Jump Relative)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
JR nn | Immediate | - | S | - | - | - | - | - | - | 12 | PC+=nn |
JR C/NC/Z/NZ, nn | Immediate | - | S | - | - | - | - | - | - | 12 ; 7 if not cc | if cc PC+=nn |
- Jumps to an alternate address by adding the parameter to the PC - in other words the parameter is an adjustment, not an absolute address. When used in an assembler with labels the syntax should be the same as JP. The JR address can only be given immediately. Conditions are legal, but only those based on carry and zero.
- DJNZ (Decrement reg. b and Jump if Not Zero)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
DJNZ n | Immediate | - | S | - | - | - | - | - | - | 13 | B--; if B!=0 PC+=nn |
- Decrements B then performs JR NZ.. to the given address. Used for encapsulating loops.
- CALL
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
CALL nn | Address | - | S | - | - | - | - | - | - | 17 | SP-=2; SP*:=PC; PC:=nn |
CALL Z/NZ/C/NC/PO/PE/P/M, nn | Address | - | S | - | - | - | - | - | - | 17 ; 10 if not cc | if cc {SP-=2; SP*:=PC; PC:=nn} |
- Like JP (including the ability to have conditions), but PUSHes the PC before jumping. Used for subroutine calls.
- If a subroutine ends with a CALL to another subroutine immediately before the RET, it is more efficient to JP to the other subroutine and allow its RET to return from the whole combination. This might make high-level programmers queasy but your compiler already does it (tail call optimization)
- RET (RETurn)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RET | - | - | S | - | - | - | - | - | - | 10 | PC:=SP*; SP+=2 |
RET Z/NZ/C/NC/PO/PE/P/M | - | - | S | - | - | - | - | - | - | 11 ; 5 if not cc | if cc {PC:=SP*; SP+=2} |
- POPs the PC from the stack, returning from a previous CALL. This can also accept the same conditions as JP.
- RETI (RETurn from Interrupt)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RETI | - | - | S | - | - | - | - | - | - | 14 | PC:=SP*; SP+=2 |
- Returns from an interrupt service routine (same as RET instruction, but also does signal to I/O device that the interrupt routine is completed).
- RETN (RETurn from Non-maskable interrupt)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RETN | - | - | S | - | - | - | - | - | - | 14 | IFF1:=IFF2; PC:=SP*; SP+=2 |
- Returns from a non-maskable interrupt service routine.
- RST (ReSTart)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
RST n | Immediate | - | S | - | - | - | - | - | - | 11 | CALL n |
- Performs a CALL to a routine located at one of eight fixed locations ($00, $08, ..., $38) in the zero page. This is located in ROM, and on the Spectrum only a limited number of values are useful to call built-in ROM routines.
- NOP (No OPeration)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
NOP | - | - | S | - | - | - | - | - | - | 4 | PC+=1 |
- Does "nothing" (just usual housekeeping like refreshing memory and advancing program counter to next instruction).
- HALT
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
HALT | - | - | S | - | - | - | - | - | - | 4 | waits for interrupt |
- Suspends the CPU until an interrupt is received (maskable interrupts must be enabled to break the wait). While CPU is waiting for interrupt, the fake NOP instruction is being executed, to keep memory refresh going on.
- DI (Disable Interrupts)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
DI | - | - | S | - | - | - | - | - | - | 4 | IFF1:=0; IFF2:=0 |
- Disables maskable interrupts.
- EI (Enable Interrupts)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
EI | - | - | S | - | - | - | - | - | - | 4 | IFF1:=1; IFF2:=1 |
- Enables maskable interrupts (after next instruction, i.e. for example "EI RET" - the interrupt may happen only after RET instruction is finished (or "EI DI" pair of instructions will not allow any maskable interrupt to happen).
- IM (Interrupt Mode)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
IM n | Immediate | - | S | - | - | - | - | - | - | 8 | Interrupt mode:=n |
- Sets interrupt handling mode. The default for Next is 1. 2 is used for user defined interrupt service routines. IM 0 is useless on Next (and pretty much everything else, to be honest)
Input and Output
- IN r, (c); OUT (c), r
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
IN r, (c) | Register | Register | S | - | 0 | P | 0 | S | S | 12 | r := in(BC) |
OUT (c),r | Register | Register | S | - | - | - | - | - | - | 12 | out(BC,r) |
- Inputs or outputs a byte value from the 16-bit port number given in BC. R can be any 8-bit register. Note that the port number is given in BC even though the instruction refers only to C. Some assemblers will allow the instruction to be written with "(bc)" instead of "(c)" as a reminder.
- IN (c); OUT (c), 0
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
IN (c) | Register | - | U | - | 0 | P | 0 | S | S | 12 | in(BC)? |
OUT (c),0 | Register | Immediate | U | - | - | - | - | - | - | 12 | out(BC,0) |
- Undocumented opcodes. The IN variation performs an input, but does not store the result, only setting the flags. The OUT variation outputs 0 on the port. This is the only number that can be output to a port in immediate mode. The Next FPGA does output zero, but some Z80 chips manufactured differently from early batches output different value like 255, so it is not recommended to use OUT (C),0 if you want to reuse your code also on classic ZX Spectrum or publish it as example.
- IN a, (n); OUT (n), a
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
IN A, (n) | Accumulator | Immediate | S | - | - | - | - | - | - | 11 | A := in(An) |
OUT (n),A | Immediate | Accumulator | S | - | - | - | - | - | - | 11 | out(An,A) |
- Inputs or outputs the byte value in A from a 16-bit port number where the lower byte is N and the upper byte is A. This is only likely to be useful in cases where the upper byte of the port number is not relevant.
- INI (INput and Increment)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
INI | - | - | S | ? | 1 | ? | ? | ! | ? | 16 | HL*:=in(BC); HL++; B-- |
- Inputs a value from port BC into memory at the address stored in HL, then increments HL and decrements B. Because B is decremented and is part of the port number, the port number for future INI instructions will change unless it is reset. Z is set if B reached 0; C, S, H, and P/V are destroyed.
- INIR (INput and Increment Repeated)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
INIR | - | - | S | ? | 1 | ? | ? | 1 | ? | 21x+16 | do INI while(B>0) |
- Loops INIR until B reaches 0, so that if INIR starts with B=0 it loops 256 times. Because B is decremented during this process and is part of the port number, this is unlikely to be useful except when the upper byte of the port number is not relevant. Interrupts are recognized during execution.
- IND, INDR (INput and Decrement, INput and Decrement Repeated)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
IND | - | - | S | ? | 1 | ? | ? | ! | ? | 16 | HL*:=in(BC); HL--; B-- |
INDR | - | - | S | ? | 1 | ? | ? | 1 | ? | 21x+16 | do IND while(B>0) |
- Behave like INI and INIR except that HL is decremented instead of incremented.
- OUTI (Out and Increment), OTIR (Out and Increment Repeated), OUTD (Out and Decrement), OTDR (Out and Decrement Repeated)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
OUTI | - | - | S | ? | 1 | ? | ? | ! | ? | 16 | B--; out(BC,HL*); HL++ |
OTIR | - | - | S | ? | 1 | ? | ? | 1 | ? | 21x+16 | do OUTI while (B>0) |
OUTD | - | - | S | ? | 1 | ? | ? | ! | ? | 16 | B--; out(BC,HL*); HL-- |
OTDR | - | - | S | ? | 1 | ? | ? | 1 | ? | 21x+16 | do OUTD while (B>0) |
- Behave like INI, INIR, IND, INDR except that they output instead of input and B is decremented before the output instead of after. Condition check on B is performed after, so that if OTIR starts with B=0 it loops 256 times.
- OUTINB (Out and Increment with No B)
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
OUTINB | - | - | E | ? | ? | ? | ? | ? | ? | 16 | out(BC,HL*); HL++ |
- Next extended opcode. Behaves like OUTI, but doesn't decrement B.
- NEXTREG
Mnemonic | Addressing mode 1 | Addressing mode 2 | Status | C | N | PV | H | Z | S | Tstates | shortfx |
---|---|---|---|---|---|---|---|---|---|---|---|
NEXTREG n,n' | Immediate | Immediate | E | - | - | - | - | - | - | 20 | HwNextReg_n:=n' |
NEXTREG n, A | Immediate | Accumulator | E | - | - | - | - | - | - | 17 | HwNextReg_n:=A |
- Next extended opcode. Directly sets the Next Feature Control Registers without going through ports TBBlue Register Select ($243B / 9275) and TBBlue Register Access ($253B / 9531).
Z80N instructions opcodes
The Z80 on the Next has extra instructions that are unique to it. Below is a table of the opcode bytes that are required to select those instructions. The timings are based on some partial testing. These may not be accurate.
Also there's initiative led by Matt Davies (author of Odin assembler/editor/debugger tool for ZX Next) to have 4-letter aliases for all new instructions using long mnemonics, the abbreviations suggested are in the last column of the table.
Instruction | Byte 1 | Byte 2 | Byte 3 | Byte 4 | T-States | 4 letter |
---|---|---|---|---|---|---|
LDIX | ED | A4 | 16 | |||
LDWS | ED | A5 | 14 | |||
LDIRX | ED | B4 | 21/16 | LIRX | ||
LDDX | ED | AC | 16 | |||
LDDRX | ED | BC | 21/16 | LDRX | ||
LDPIRX | ED | B7 | 21/16 | LPRX | ||
OUTINB | ED | 90 | 16 | OTIB | ||
MUL D,E | ED | 30 | 8 | |||
ADD HL,A | ED | 31 | 8 | |||
ADD DE,A | ED | 32 | 8 | |||
ADD BC,A | ED | 33 | 8 | |||
ADD HL,$im16 | ED | 34 | low | high | 16 | |
ADD DE,$im16 | ED | 35 | low | high | 16 | |
ADD BC,$im16 | ED | 36 | low | high | 16 | |
SWAPNIB | ED | 23 | 8 | SWAP | ||
MIRROR A | ED | 24 | 8 | MIRR | ||
PUSH $im16 | ED | 8A | high | low | 23 | |
NEXTREG $im8,$im8 | ED | 91 | register | value | 20 | NREG |
NEXTREG $im8,A | ED | 92 | register | 17 | NREG | |
PIXELDN | ED | 93 | 8 | PXDN | ||
PIXELAD | ED | 94 | 8 | PXAD | ||
SETAE | ED | 95 | 8 | STAE | ||
TEST $im8 | ED | 27 | value | 11 | ||
BSLA DE,B | ED | 28 | 8 | |||
BSRA DE,B | ED | 29 | 8 | |||
BSRL DE,B | ED | 2A | 8 | |||
BSRF DE,B | ED | 2B | 8 | |||
BRLC DE,B | ED | 2C | 8 | |||
JP (C) | ED | 98 | 13 |
Note that the "PUSH $im16" instruction is not a mistake. The operand is encoded in big-endian.