16 lines
195 B
C
16 lines
195 B
C
#include "types.h"
|
|
#include "tests.h"
|
|
#include "gdt.h"
|
|
#include "kernel.h"
|
|
|
|
void kinit() {
|
|
gdt_configure();
|
|
test_dispatcher();
|
|
}
|
|
|
|
|
|
void kmain() {
|
|
kinit();
|
|
for(;;); // the most amazing loop
|
|
}
|