XorEllipse
Function number: 52
XORs an ellipse centered at the specified X, Y position using the specified major and minor axes and current drawing color.
Register entry values
AX = EE34
SI = X origin
DI = Y origin
BX = Major axis
CX = Minor axis
Register exit values
None
Example
MOV AX,0EE34H ;Xor ellipse function
MOV SI,160 ;X origin
MOV DI,100 ;Y origin
MOV BX,50 ;Major axis
MOV CX,75 ;Minor axis
INT 10H ;Call GRAFIX
Comments
See the 'Ellipse' function in chapter 2 for more information.