Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Writing drivers for DOS. Where to begin? [closed]

Tags:

driver

dos

I know its possible to write DOS drivers, but I was wondering if there are still books or people out there with that knowledge. I want to run FreeDOS and be able to use my USB keyboard and mouse, and I am guessing I need to write USB drivers.

Where would I even begin?

like image 259
Jason Mills Avatar asked Apr 20 '14 20:04

Jason Mills


People also ask

Which driver is loaded first when loading MS DOS?

DOS maintains a linked list of these drivers, with new drivers being added to the head of the list. When a device driver is accessed, the list is searched from the head. The latest driver is found first and is subsequently used.

What are the two types of devices drivers from VFS point of view?

Two types of character device drivers are standard character device drivers and STREAMS device drivers.

What are MS DOS drivers?

MS-DOS device drivers Most of the device drivers on MS-DOS are part of the operating system such as keyboard and screen console drivers, floppy and hard-disk drivers, printer port driver, serial port driver etc.


1 Answers

Take a look here: http://www.drdobbs.com/writing-ms-dos-device-drivers/184402277

Also, check out CuteMouse(http://cutemouse.sourceforge.net) for mouse drivers. Maybe this will give you an idea of how they are written.

like image 71
adanot Avatar answered Sep 20 '22 12:09

adanot