Deathchase | Routines |
Prev: 66D6 | Up: Map | Next: 66FD |
66DB | LD DE,$504D | Target the first column | ||
66DE | LD HL,$7000 | 7000 - Handlebar graphic. Can be changed to 707E or 70FC depending on movement | ||
66E1 | CALL $66E7 | Call once for the left column then repeat for the right | ||
66E4 | LD DE,$506D | |||
66E7 | LD B,$08 | 8 lines | ||
66E9 | PUSH BC | |||
66EA | PUSH DE | |||
66EB | LD BC,$0007 | 7x8 pixels per line | ||
66EE | LDIR | Copy pixels | ||
66F0 | POP DE | |||
66F1 | INC D | Next line | ||
66F2 | POP BC | |||
66F3 | DJNZ $66E9 | |||
66F5 | LD D,$5A | Point to attributes | ||
66F7 | LD BC,$0007 | Copy attributes | ||
66FA | LDIR | |||
66FC | RET |
Prev: 66D6 | Up: Map | Next: 66FD |