640x480x16 and 8x8 font???? in assembler graphic mode???
I please AX, BX ecd...... and INT **h ??
Interrups and graphic mode
Re:Interrups and graphic mode
Code: Select all
mov ax,0012h
int 0x10 ; set to 640x480x16
Maybe you can use the teletype function.
Code: Select all
mov ax,0e00h+'H'
mov bx,0700h
int 0x10 ;this will print H to the screen (I hope ;) )
Re:Interrups and graphic mode
What do you mean ? ::)ASHLEY4 wrote: Dennis,you should get a job as a translator
ASHLEY4.