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

📄 c.c

📁 The main purpose of this project is to add a new scheduling algorithm to GeekOS and to implement a s
💻 C
字号:
/* * A test program for GeekOS user mode */#include <conio.h>#include <geekos/syscall.h>int main(int argc, char **argv){    int badsys = -1, rc;    Print_String("I am the c program\n");    /* Make an illegal system call */    __asm__ __volatile__ (	SYSCALL	: "=a" (rc)	: "a" (badsys)    );    return 0;}

⌨️ 快捷键说明

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