Results 1 to 3 of 3
Hi, is there a way to call BIOS interrupts using either assembly or C language? Specifically, that would concern hard disk and USB management.
Thanks a lot!...
- 02-23-2008 #1Just Joined!
- Join Date
- Feb 2008
- Posts
- 21
Calling BIOS interrupts
Hi, is there a way to call BIOS interrupts using either assembly or C language? Specifically, that would concern hard disk and USB management.
Thanks a lot!
- 02-23-2008 #2
There is no way to do that from a user application. It is done with device drivers.
To see how a device driver is written, I recommand that you google this:
... and then check out the source of a few device drivers to see how that's done in practice. The driver you write can readily make BIOS calls.Code:Linux device driver tutorial
--
Bill
Old age and treachery will overcome youth and skill.
- 02-23-2008 #3Just Joined!
- Join Date
- Feb 2008
- Posts
- 21
Found a site:
http://www.freesoftwaremagazine.com/articles/drivers_linux?page=0%2C0
Seems good. Trying to read in detail.
Thanks!


Reply With Quote