Files
riscv-operating-system-mooc/code/os/00-bootstrap/kernel.c
2021-04-01 20:02:31 +08:00

6 lines
58 B
C

void start_kernel(void)
{
while (1) {}; // stop here!
}