| Prev: 923E | Up: Map | Next: 9264 |
924F: Continue printing lives after count has been loaded.
|
Positions cursor and prints plane symbols for each life. Pads with spaces to clear any previous display.
|
||||||||
| print_lives_continue | 924F | LD B,A | Store lives count in B for loop counter. | |||||
| 9250 | LD A,$16 | AT 20,18 | ||||||
| 9252 | RST $10 | |||||||
| 9253 | LD A,$14 | |||||||
| 9255 | RST $10 | |||||||
| 9256 | LD A,$12 | |||||||
| 9258 | RST $10 | |||||||
| 9259 | LD A,B | If lives count is 0, skip to padding. | ||||||
| 925A | CP $00 | |||||||
| 925C | JP Z,print_lives_padding | |||||||
| print_lives_loop | 925F | LD A,$9C | Print ✈ UDG symbol, loop B times. | |||||
| 9261 | RST $10 | |||||||
| 9262 | DJNZ print_lives_loop | |||||||
| Prev: 923E | Up: Map | Next: 9264 |