Hi,
I just need a way to access the floppy as easy as possible. By easy I mean if possible without DMA and IRQ. Are there any tutorials?
Thanks,
The Legend
Floppy as easy as possible ...
Re: Floppy as easy as possible ...
it is impossible to write floppydirvers without irqs.
It is possible to write some without dma, but this is much more complicated, cause an interrupt will come for every single byte, wich you then must transfer from the fdc to its correct adress in the memory.
infos on how to program the dma
http://www.programmersheaven.com/file.asp?FileID=6345
This one s about the fdc (the examples are ****!)
http://debs.future.easyspace.com/Progra ... loppy.html
also very good is to have a look at the
http://gazos.sourceforge.net/
fdc.c and dma.c files
It is possible to write some without dma, but this is much more complicated, cause an interrupt will come for every single byte, wich you then must transfer from the fdc to its correct adress in the memory.
infos on how to program the dma
http://www.programmersheaven.com/file.asp?FileID=6345
This one s about the fdc (the examples are ****!)
http://debs.future.easyspace.com/Progra ... loppy.html
also very good is to have a look at the
http://gazos.sourceforge.net/
fdc.c and dma.c files