Floppy as easy as possible ...

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
The_Legend

Floppy as easy as possible ...

Post 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
mansonbound

Re: Floppy as easy as possible ...

Post 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
Post Reply