Page 1 of 1
Floppy as easy as possible ...
Posted: Sun Feb 10, 2002 1:08 am
by The_Legend
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
Re: Floppy as easy as possible ...
Posted: Sun Feb 10, 2002 11:39 pm
by mansonbound
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