📄 pass2.h
字号:
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ pass2 - build listing file and +
+ generate bytecode into temporary file +
+ +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#ifndef _PASS2_H
#define _PASS2_H
#include "lnscan.h"
#include "linux.h"
//#define PASS2_DEBUG 1
#ifdef PASS2_DEBUG
#define PASS2_DEBUG0(arg); printf(arg);
#define PASS2_DEBUG1(arg1,arg2); printf(arg1,arg2);
#define PASS2_DEBUG2(arg1,arg2,arg3); printf(arg1,arg2,arg3);
#else
#define PASS2_DEBUG0(arg);
#define PASS2_DEBUG1(arg1,arg2);
#define PASS2_DEBUG2(arg1,arg2,arg3);
#endif
U4 bytePosPass2; /*current index of bytecode being generated*/
int pass2_init();
void pass2_free();
void pass2_parseLine(struct Line *line);
void generateSymbolSummary();
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -