Changing screen mode in pmode

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
keyboard_ninja

Changing screen mode in pmode

Post by keyboard_ninja »

if vc++ makes 32bit code, then changing screen modes in pmode would be possible
how could you change the screen mode in pmode ? - c++/c
Tim Robinson

RE:Changing screen mode in pmode

Post by Tim Robinson »

>On 2002-05-08 18:43:07, keyboard_ninja wrote:
>if vc++ makes 32bit code, then changing screen modes in pmode would be possible
>how could you change the screen mode in pmode ? - c++/c

You've got to program the VGA hardware directly. The Tauron VGA utilities are a
good source of information: search for "Tauron VGA" and you should get some
results.

BTW: since you are writing a 32-bit protected mode OS, you will have to do this
for all hardware, since you cannot use the BIOS for anything (unless you write
a V86 mode monitor).
Post Reply