SimpleKernel  0.0.1
boot.h File Reference

boot 头文件 More...

#include "cstdint"
Include dependency graph for boot.h:

Go to the source code of this file.

Functions

int main (int _argc, char **_argv)
 入口 More...
 

Detailed Description

boot 头文件

Author
Zone.N (Zone..nosp@m.Niuz.nosp@m.h@hot.nosp@m.mail.nosp@m..com)
Version
1.0
Date
2023-07-15
change log:
DateAuthorDescription
2023-07-15Zone.N (Zone..nosp@m.Niuz.nosp@m.h@hot.nosp@m.mail.nosp@m..com)创建文件

Definition in file boot.h.

Function Documentation

◆ main()

int main ( int  _argc,
char **  _argv 
)

入口

Parameters
_argc参数个数
_argv参数列表
Returns
int 正常返回 0

Definition at line 19 of file main.cpp.

19  {
20  (void)_argc;
21  (void)_argv;
22 
23  // 进入死循环
24  while (1) {
25  ;
26  }
27  return 0;
28 }