XorLineTo
Function number: 40
XORs a line from the current X, Y position to specified X, Y position using the current drawing color.
Register entry values
AX = EE28
SI = Ending X position
DI = Ending Y position
Register exit values
None
Example
MOV AX,0EE28H ;Xor line to function
MOV SI,319 ;Ending X
MOV DI,199 ;Ending Y
INT 10H ;Call GRAFIX
Comments
None