diff --git a/src/sys/include/isa/fdc.h b/src/sys/include/isa/fdc.h index beaee87..6cc0671 100644 --- a/src/sys/include/isa/fdc.h +++ b/src/sys/include/isa/fdc.h @@ -61,7 +61,7 @@ -void fdc_init(); +int fdc_init(); void floppyIsr(); void floppyIsrhndlr(); void sendByte(int Int8); @@ -85,6 +85,10 @@ /*** $Log$ + Revision 1.5 2004/07/14 12:42:46 reddawg + fdc: fdcInit to fdc_init + Changed Startup Routines + Revision 1.4 2004/05/21 14:57:16 reddawg Cleaned up diff --git a/src/sys/include/ubixos/init.h b/src/sys/include/ubixos/init.h index ece1d31..aa82bb0 100644 --- a/src/sys/include/ubixos/init.h +++ b/src/sys/include/ubixos/init.h @@ -45,7 +45,7 @@ #include #include -typedef int (*intFunctionPTR)(); +typedef int (*intFunctionPTR)(void); intFunctionPTR init_tasks[] = { vmm_init, @@ -70,6 +70,10 @@ /*** $Log$ + Revision 1.15 2004/07/14 12:42:46 reddawg + fdc: fdcInit to fdc_init + Changed Startup Routines + Revision 1.12 2004/07/14 02:25:40 reddawg net: netInit to net_init Changed startup routines diff --git a/src/sys/init/main.c b/src/sys/init/main.c index 1c205ec..f6cd253 100644 --- a/src/sys/init/main.c +++ b/src/sys/init/main.c @@ -44,6 +44,7 @@ #include #include #include +#include static char kernelStack[8192]; /* Stack Space For Our Kernel */ @@ -76,6 +77,7 @@ /* Modify src/sys/include/ubixos/init.h to add a startup routine */ for (i=0x0;i on #include