Prev: AFB8 Up: Map Next: AFD1
AFC8: Draw frame pointed to by HL
Streams frame data bytes via RST $10 until $FF terminator.
Input
HL Address of the frame data block
draw_frame AFC8 LD A,(HL) Load byte; if $FF → RET (end of frame)
AFC9 CP $FF
AFCB RET Z RET Z
AFCC RST $10 RST $10 (output char to screen)
AFCD INC HL INC HL
AFCE JR draw_frame Loop back
Prev: AFB8 Up: Map Next: AFD1