Prev: B583 Up: Map Next: B59C
B594: Print H copies of byte L via RST $10
Used by the routine at door_print_sprite_row.
B = H (repeat count); loop: RST $10 with A = L, DJNZ. Returns.
Called from door_print_sprite_row to emit one row of door tile characters.
door_print_chars B594 LD B,H
door_print_chars_0 B595 LD A,L
B596 PUSH HL
B597 RST $10
B598 POP HL
B599 DJNZ door_print_chars_0
B59B RET
Prev: B583 Up: Map Next: B59C