Page 1 of 1

Do Protected Mode BIOS Routines Exist?

Posted: Sat Nov 23, 2002 12:00 am
by mikeleany
I've heard that there are some protected mode BIOS routines, and I got the impression that they were interrupt handlers. I have four questions about them.

1) Do they really exist?
2) Are they provided by all BIOS makers?
3) What are they? (Interrupt handlers or what?)
4) How do I use them?

If the BIOS provided protected mode interrupt handlers they would be really convenient to use until I got my own written.

RE:Do Protected Mode BIOS Routines Exist?

Posted: Mon Nov 25, 2002 12:00 am
by anton
The ones i know of do the task of switching from real mode to pmode.
Anton.

RE:Do Protected Mode BIOS Routines Exist?

Posted: Mon Nov 25, 2002 12:00 am
by DarylD
The PCI bios routines can be accessed from PMode, also from what I know VESA 3.0 allows BIOS calls from PMode too.

The vast majority of standard ones will only be available in real or V86 mode.

Daryl.

RE:Do Protected Mode BIOS Routines Exist?

Posted: Mon Nov 25, 2002 12:00 am
by mikeleany
Thanks. After doing a little more searching I had found the PCI routines, but didn't know about the VESA routines. But what I was really hoping for was something to do my interrupt and exception handling for me, but I guess I have to do that completely from scratch. That's kind of what I expected anyway though.