XorPointC
Function number: 37
XORs individual points onto the screen using the specified color.
Register entry values
AX = EE25
SI = X position
DI = Y position
DX = Color of point
Register exit values
None
Example
MOV AX,0EE25H ;Xor point with color function
MOV SI,160 ;X position
MOV DI,100 ;Y position
MOV DX,1 ;Point color
INT 10H ;Call GRAFIX
Comments
None