blob: 325f8580f7de70751c6627c511e87d5efadd1487 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <fbos/init.h>
/*
* This is the main entry point of the kernel after head.S is done. This
* function can (and will) assume that everything has been reset and that we can
* start the whole thing.
*/
__noreturn __kernel void start_kernel(void)
{
for (;;)
;
}
|