📄 manager.h
字号:
#pragma once
#include "CPU.h"
#include <string>
#include <map>
#include <set>
#include <vector>
#include "TextCode.h"
#include "Manager.h"
using namespace std;
class Manager
{
string PrintNum(unsigned);
static char *RegisterFormat[];
protected:
CPU cpu;
vector<TextCode> textCodes;
public:
void ShowStatus(vector<string>& ret);
void Execute();
bool StepRun(int step = 1);
virtual void GetTextCodes(vector<string>& ret);
virtual void Translate() =0;
virtual void SaveCode();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -