⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kernel.c

📁 操作系统试验!通过这个试验
💻 C
字号:
/** @file kernel.c *  @brief An initial kernel.c * *  This file contains the kernel's *  main() function. * *  You should add your own comments to *  replace this one. * *  This is where you will eventually setup *  your game board and have it run. * */#include <kernel_init.h>#include <console.h>#define NULL	0/** @brief Kernel entrypoint. *   *  This is the entrypoint for your kernel. *  Right now, it is a tight while loop. *  Place your game code here * * @return Should never return */int main(){    kernel_init();    while(1);    return 0;}void *GameProcess1(void *argv){	return NULL;}void *GameProcess2(void *argv){	return NULL;}void *GameProcess3(void *argv){	return NULL;}void *GameProcess4(void *argv){	return NULL;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -