is dos interrupts available in bios

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
shivanth
Posts: 1
Joined: Thu Aug 28, 2008 6:42 am

is dos interrupts available in bios

Post by shivanth »

can anybody tell me whether i can use dos interrupts in my os . if yes, does this mean that it resides in bios just like other bios interrupts .
User avatar
bewing
Member
Member
Posts: 1401
Joined: Wed Feb 07, 2007 1:45 pm
Location: Eugene, OR, US

Re: is dos interrupts available in bios

Post by bewing »

Sorry, the answer is no.

All the INT 0x21 dos calls are "hooked" by dos, when dos boots. The code for those calls is entirely inside dos, and none of it is in the BIOS. So none of it is available unless dos is booted and running.
jal
Member
Member
Posts: 1385
Joined: Wed Oct 31, 2007 9:09 am

Re: is dos interrupts available in bios

Post by jal »

bewing wrote:All the INT 0x21 dos calls are "hooked" by dos, when dos boots. The code for those calls is entirely inside dos, and none of it is in the BIOS. So none of it is available unless dos is booted and running.
Which of course didn't stop Win95 being called an 'OS' :).


JAL
Post Reply