diff --git a/src/sys/init/main.c b/src/sys/init/main.c index e9936d6..960a4ba 100644 --- a/src/sys/init/main.c +++ b/src/sys/init/main.c @@ -139,18 +139,14 @@ } /* Initialize Networking Subsystem */ - /* if (netInit() != 0x0) { kpanic("Error: Initializing Networking Subsystem\n"); } - */ /* Initialize The NE2000 NIC Device */ - /* if (ne2kInit(0x240) != 0x0) { kpanic("Error: Initializing NE2000\n"); } - */ if (devFSEnable() != 0x0) { kpanic("Error: Enabling devFS\n"); @@ -232,6 +228,9 @@ /*** $Log$ + Revision 1.27 2004/05/21 21:15:04 reddawg + Fixed a few bugs which prevented the system from loadin + Revision 1.26 2004/05/20 22:54:02 reddawg Cleaned Up Warrnings diff --git a/src/sys/kernel/syscall.c b/src/sys/kernel/syscall.c index 6eef03f..98a50af 100644 --- a/src/sys/kernel/syscall.c +++ b/src/sys/kernel/syscall.c @@ -156,9 +156,11 @@ void sysStartSDE() { int i = 0x0; + for (i=0;i<1400;i++) { + asm("hlt"); + } execThread(sdeThread,(uInt32)(kmalloc(0x2000)+0x2000),0x0); for (i=0;i<1400;i++) { - //schedYield(); asm("hlt"); } return; @@ -166,6 +168,9 @@ /*** $Log$ + Revision 1.9 2004/05/21 21:15:04 reddawg + Fixed a few bugs which prevented the system from loadin + Revision 1.8 2004/05/21 12:46:02 reddawg Cleaned up