Page 1 of 1

Fabian Nunez FDC driver

Posted: Sun Jan 15, 2006 11:44 am
by Vladaz
Did anyone tried to use/port the Fabian Nunez FDC driver in your OS? It uses some C libraries, that my OS hasn't got. Libraries such as go32.h and pc.h . Where can I get the functions that are used in that FDC driver code?

Re:Fabian Nunez FDC driver

Posted: Sun Jan 15, 2006 12:55 pm
by Pype.Clicker
these are typical stuff from DJGPP world... "go32" is the extension that makes a DJGPP 32bit files wrapped around a 16bit executable that contains code to switch to (and manage) protected mode.

i don't know about "pc.h" ...

Re:Fabian Nunez FDC driver

Posted: Sun Jan 15, 2006 1:01 pm
by Vladaz
go32 has a function that i need. It is movedata() where can I get it?

Re:Fabian Nunez FDC driver

Posted: Sun Jan 15, 2006 1:53 pm
by Dex4u
Go here: http://www.delorie.com/djgpp/zip-picker.cgi
in the zip "v2/djdev203.zip"
Are the .h files you need, but do you not need dos, to run that demo ?.

Re:Fabian Nunez FDC driver

Posted: Sun Jan 15, 2006 2:00 pm
by Vladaz
I have h files in my djgpp. But when I compile, it has problems and it doesn't understand them. I need to write my own libraries I think.