Point
Function number: 06
Plots individual points onto the screen using the current drawing color.
Register entry values
AX = EE06
SI = X position
DI = Y position
Register exit values
None
Example
MOV AX,0EE06H ;Plot point function
MOV SI,160 ;X position
MOV DI,100 ;Y position
INT 10H ;Call GRAFIX
Comments
None