SimpleKernel  0.0.1
arch.cpp File Reference

arch cpp More...

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

Go to the source code of this file.

Functions

int32_t arch (uint32_t _argc, uint8_t **_argv)
 

Detailed Description

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

Function Documentation

◆ arch()

int32_t arch ( uint32_t  _argc,
uint8_t **  _argv 
)

Definition at line 19 of file arch.cpp.

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