mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 04:24:33 +00:00
11 lines
165 B
C
11 lines
165 B
C
#include "os.h"
|
|
|
|
int os_main(void)
|
|
{
|
|
lib_puts("OS start\n");
|
|
timer_init(); // start timer interrupt ...
|
|
while (1) {} // os : do nothing, just loop!
|
|
return 0;
|
|
}
|
|
|