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