Ext2 Filesystem Driver
Intel HD Audio Driver (Work in progress)
Intel 8254x/e1000 Ethernet Adapter Driver
Runs in-kernel tests
#include <Module.h>
#include <Logging.h>
#include <Scheduler.h>
void Test1(){
Scheduler::Yield();
}
int ModuleInit(){
Log::Info("Hello, Module World!");
Test1();
return 0;
}
int ModuleExit(){
Log::Info("Goodbye, Module World!");
return 0;
}
DECLARE_MODULE("examplemodule", "Simple example of a kernel module.", ModuleInit, ModuleExit)