PutScreen
Function number: 58
Copies the entire screen from an integer array into the screen buffer.
Register entry values
AX = EE3A
DS = Segment address of integer array
DX = Offset address of integer array
Register exit values
None
Example
MOV AX,0EE3AH ;Transfer screen function
MOV DX,SEG Array ;Get segment address of array
MOV DS,DX ; ..
MOV DX,OFFSET Array ;Get offset address of array
INT 10H ;Call GRAFIX
Comments
See the 'PutScreen' function in chapter 2 for more information.