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

📄 cmdline.h

📁 简单的虚拟机
💻 H
字号:
#include <stdbool.h>#define DEF_HEAP 64		/* default heap = 64KB = 65,536 bytes */#define DEF_STACK 64		/* default stack = 64KB = 65,536 bytes */struct CmdLine{	char *binFile;		/* name of the bytecode file to execute */	bool ok;			/*TRUE or FALSE*/};void printUsage(char* fname);struct CmdLine handleArguments(int argc, char* argv[]);

⌨️ 快捷键说明

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