Bypass navigation menu
RGB Classic Games
Keeping the classics alive
Currently hosting 566 great games!
Return to Chapter 3

PointC

Function number: 29

Plots individual points onto the screen using the specified color.

Register entry values

AX = EE1D
SI = X position
DI = Y position
DX = Color of point

Register exit values

None

Example

MOV     AX,0EE1DH       ;Plot point with color function
MOV SI,10 ;X position
MOV DI,10 ;Y position
MOV DX,3 ;Color of point
INT 10H ;Call GRAFIX

Comments

None