#include "print.h" #include "init.h" int main(void) { put_str("I am kernel\n"); init_all(); asm volatile("sti"); // 使能中断 while (1) ; return 0; }