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

📄 vm.h

📁 编译并且测试成功的虚拟机
💻 H
字号:
#ifndef VM_H#define VM_H#include "os.h"#include "ScriptTypes.h"#include "HashMap.h"class VM { private:  char *CS;		// code segment  HashMap<string, FUNCTIONHEADER *> *functionList;  StackItem *constantPool; public:  VM(char *code, HashMap<string, FUNCTIONHEADER *>* functionList, StackItem *cp);  ~VM(); void run(ProgramInstance *prog, int maxInstructions);};#endif

⌨️ 快捷键说明

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