DrawBoxC
Function number: 34
Draws a line box starting at the upper left X, Y position to the lower right X, Y position using the current drawing color.
Register entry values
AX = EE22
BX = Upper left X position
CX = Upper left Y position
SI = Lower right X position
DI = Lower right Y position
Register exit values
None
Example
MOV AX,0EE22H ;Draw box function
MOV BX,0 ;X1 position
MOV CX,0 ;X2 position
MOV SI,319 ;X2 position
MOV DI,199 ;Y2 position
INT 10H ;Call GRAFIX
Comments
None