Hello experts,
It is my first post to the forum.
I am very fond of Assembly Language and we have taught in university.
My problem is, I want a book or any document in which I could find information how to write directly to the VRAM using int 21h.
I am using MASM and Windows XP.
Here is the sample program about which I am asking:
.model small
.stack 32h
.code
mov ax, 0b800h
mov es, ax
mov di, 820
mov al, 'N'
cld
mov ah, 01001001b
stosw
mov ah, 4ch
int 21h
end
This program will write N directly to the VRAM, as our teacher said. But he never told us where to find more examples of VRAM access with int 21h. He recommended us two books, kip irvine book and the intel mircoprocessors by berry b. bray. But in both books I didn't see any example which my teacher had done in the computer laboratory.
I need your help guys.
Thank you all