SimpleKernel  0.0.1
driver.cpp File Reference

driver cpp More...

#include "driver.h"
Include dependency graph for driver.cpp:

Go to the source code of this file.

Functions

int32_t driver (uint32_t _argc, uint8_t **_argv)
 入口 More...
 

Detailed Description

driver cpp

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 driver.cpp.

Function Documentation

◆ driver()

int32_t driver ( uint32_t  _argc,
uint8_t **  _argv 
)

入口

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

Definition at line 19 of file driver.cpp.

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