Prev: 31634 Up: Map Next: 31647
31640: Clear pixel
Clears the screen pixel at x,y
This is the entry in the jump table handled by the routine at 32374 when that code is called with A=1
Input
B ypos
C xpos
pixel_clear 31640 CALL pxy2saddr pxy2saddr of B=ypos, C=xpos
31643 CPL Invert pixel map
31644 AND (HL) Pick up screen byte
31645 LD (HL),A Merge out the required pixel
31646 RET
Prev: 31634 Up: Map Next: 31647