Routines |
Prev: A18C | Up: Map | Next: A207 |
|
||||
Pause | A1FF | DEC HL | Decrease HL by one. | |
A200 | LD A,L | Loop back to Pause until HL is zero. | ||
A201 | OR H | |||
A202 | JR NZ,Pause | |||
A204 | DJNZ Pause | Decrease counter by one and loop back to Pause until counter is zero. | ||
A206 | RET | Return. |
Prev: A18C | Up: Map | Next: A207 |