SimpleKernel  0.0.1
main.cpp
Go to the documentation of this file.
1 
17 #include "kernel.h"
18 
19 int main(int _argc, char **_argv) {
20  (void)_argc;
21  (void)_argv;
22 
23  // 进入死循环
24  while (1) {
25  ;
26  }
27  return 0;
28 }
内核头文件
int main(int _argc, char **_argv)
入口
Definition: main.cpp:19