📄 common.h
字号:
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <assert.h>
#define STACKSIZE 8192
#define FILENAMESIZE 512
#define MAXLEVELS 255
enum OBJCODEDEFINE
{
LIT,LOD,ILOD,LODA,LODT,LODB,STO,CPYB,JMP,JPC,RED,WRT,CAL,RETP,UDIS,OPAC,ENTP,
ENDP,ANDS,ORS,NOTS,IMOD,MUS,ADD,SUB,MULT,IDIV,EQ,NE,LS,LE,GT,GE
};
void Interpret(int *code);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -