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

📄 svmc.h

📁 简单的虚拟机代码 可以看看!! !! !!!1
💻 H
字号:
#ifndef SVMC_H
#define SVMC_H

class SVMC
{
public:
	SVMC();
	SVMC(const SVMC &);

	void init();//初始化虚拟机
	void loadInstructions();//载入指令
	void excute();//执行指令
	bool nextMove();//执行下一条指令

	void print() const;//转储
private:
	int memory[100];//内存
	int accumulator;//累加器
	int counter;//指令计数器
	int instructionRegister;//指令记存器
	int operationCode;//操作码
	int operand;//操作数
};

#endif

⌨️ 快捷键说明

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