Routines |
Prev: 39535 | Up: Map | Next: 39590 |
|
||||
39558 | LD A,B | A=B. | ||
39559 | LD HL,37294 | HL=37294. | ||
39562 | ADD A,L | A+=L. | ||
39563 | LD L,A | L=A. | ||
39564 | JR NC,39567 | Jump to 39567 if ?? is greater than or equal to 0. | ||
39566 | INC H | Increment H by one. | ||
39567 | LD A,(HL) | A=*HL. | ||
39568 | ADD A,C | A+=C. | ||
39569 | CP 58 | Compare A with 58. | ||
39571 | JR NC,39577 | Jump to 39577 if A is greater than or equal to 58. | ||
39573 | LD (HL),A | Write A to *HL. | ||
39574 | JP Print_Score | Jump to Print_Score. | ||
39577 | SUB 10 | A-=10. | ||
39579 | LD (HL),A | Write A to *HL. | ||
39580 | DEC B | Decrease B by one. | ||
39581 | LD C,1 | C=1. | ||
39583 | LD A,B | A=B. | ||
39584 | INC A | Increment A by one. | ||
39585 | JP Z,Print_Score | Jump to Print_Score if A is equal to 1. | ||
39588 | JR 39558 | Jump to 39558. |
Prev: 39535 | Up: Map | Next: 39590 |