Interrups and graphic mode

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
PJ

Interrups and graphic mode

Post by PJ »

640x480x16 and 8x8 font???? in assembler graphic mode???

I please AX, BX ecd...... and INT **h ??
DennisCGc

Re:Interrups and graphic mode

Post by DennisCGc »

Code: Select all

   mov  ax,0012h
   int    0x10   ; set to 640x480x16
And about the 8x8 font, I don't know sure.
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 ;) )
ASHLEY4

Re:Interrups and graphic mode

Post by ASHLEY4 »

Dennis,you should get a job as a translator ;)

ASHLEY4.
DennisCGc

Re:Interrups and graphic mode

Post by DennisCGc »

ASHLEY4 wrote: Dennis,you should get a job as a translator ;)

ASHLEY4.
What do you mean ? ::)
Post Reply