Difference between revisions of "Z80 wait instructions"

From MSX Game Library

Line 2: Line 2:
 
! Inst. !! Wait<br/>CC !! Size<br/>(bytes) !! Flag modification
 
! Inst. !! Wait<br/>CC !! Size<br/>(bytes) !! Flag modification
 
|-
 
|-
| <tt>NOP</tt> || 5 || 1 || None
+
| <tt>NOP</tt>         || 5 || 1 || None
 
|-
 
|-
| <tt>OR 0</tt> || 8 || 2 || ?
+
| <tt>OR 0</tt>       || 8 || 2 || ?
 
|-
 
|-
| <tt>AND 0</tt> || 8 || 2 || ?
+
| <tt>AND 0</tt>       || 8 || 2 || ?
 
|-
 
|-
| <tt>BIT 0, A</tt> || 10 || 2 || ?
+
| <tt>BIT 0, A</tt>   || 10 || 2 || ?
 +
|-
 +
| <tt>BIT 0, (HL)</tt> || 14 || 2 || ?
 
|}
 
|}

Revision as of 16:09, 2 March 2024

Inst. Wait
CC
Size
(bytes)
Flag modification
NOP 5 1 None
OR 0 8 2  ?
AND 0 8 2  ?
BIT 0, A 10 2  ?
BIT 0, (HL) 14 2  ?