sunspore,
If you want to know more about DOS drivers, this is how it works.
First, as MyTwoGirlsDad already mentioned, you need oakcdrom.sys (universal cdrom DOS drivers). But you don't need to copy from floopy, It's already in your windows system.
I don't remember exactly what the folder is, but it has to be one of this
- C:\Windows
or
- C:\Windows\Command
or
- C:\Windows\Command\EBD
So put this in config.sys
DeviceHigh=C:\Windows\Command\EBD\OAKCDROM.SYS /D:CD1
This is an internal driver so DOS can "talk" to the hardware directly.
Note: I use "/D:CD1" this is an interface name to the external driver.
Now you need an external driver (interface) so we can "talk" to DOS, which is MSCDEX.exe this is also in your windows system (one of the above folder) and put this in autoexec.bat
C:\Windows\Command\MSCDEX /D:CD1 /V /M:15 /L:G
Where:
/D:CD1 - locate an internal interface driver
/V - display a verbose message when the driver is loaded
/M:15 - tell DOS how much buffer we want to allocate for this the drivers
/L:G - optional, use only if we want to name it other than DOS order. In this case we name it "G"
Hope it helps a little
-- AirCon --