Prev: 68EC Up: Map Next: 6910
68F6: Draw Sprite
Used by the routines at 692C and 6DA8.
DrawSprite 68F6 LD A,(HL) A=*HL.
68F7 EXX Switch to the shadow registers.
68F8 LD (HL),A Write A to *HL'.
68F9 INC HL Increment HL' by one.
68FA EXX Switch back to the normal registers.
68FB LD A,(BC) A=*BC.
68FC LD (HL),A Write A to *HL.
68FD INC BC Increment BC by one.
68FE INC H Increment H by one.
68FF LD A,(BC) A=*BC.
6900 LD (HL),A Write A to *HL.
6901 INC BC Increment BC by one.
6902 INC H Increment H by one.
6903 LD A,(HL) A=*HL.
6904 EXX Switch to the shadow registers.
6905 LD (HL),A Write A to *HL'.
6906 INC HL Increment HL' by one.
6907 EXX Switch back to the normal registers.
6908 LD A,(BC) A=*BC.
6909 LD (HL),A Write A to *HL.
690A INC BC Increment BC by one.
690B INC H Increment H by one.
690C LD A,(BC) A=*BC.
690D LD (HL),A Write A to *HL.
690E INC BC Increment BC by one.
690F RET Return.
Prev: 68EC Up: Map Next: 6910