/* * kos.c -- starting point for student's os. * */ #include #include "simulator.h" #include "scheduler.h" void KOS() { printf("booting KOS!\n"); SYSHalt(); /* not reached .. */ }