![]() |
Routines |
27387 | LD A,1 | This will add 10 to the score |
27389 | LD HL,(32708) | HL=score |
27392 | ADD A,L | Set HL equal to the new score |
27393 | LD L,A | |
27394 | ADC A,H | |
27395 | SUB L | |
27396 | LD H,A | |
27397 | LD (32708),HL | Store the new score |
27400 | LD DE,20924 | Display file address at which to print the score |
27403 | JP 30408 | Print the new score |