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

📄 bldfile.h

📁 < 虚拟机设计与实现>>的 windows版本
💻 H
字号:
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+                                                                   +
+ bldfile   -	construct header and output file                    +
+               append bytecode from pass2 on to end                +
+                                                                   +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#ifndef _BLDFILE_H
#define _BLDFILE_H

//#define PASS3_DEBUG		1

#ifdef	PASS3_DEBUG
#define	PASS3_DEBUG0(arg);						printf(arg);
#define PASS3_DEBUG1(arg1,arg2);				printf(arg1,arg2);
#define PASS3_DEBUG2(arg1,arg2,arg3);			printf(arg1,arg2,arg3);
#else
#define	PASS3_DEBUG0(arg);
#define PASS3_DEBUG1(arg1,arg2);
#define PASS3_DEBUG2(arg1,arg2,arg3);
#endif

/*byte sizes of records in debug DB*/

#define SIZE_GLOBREC	37
#define SIZE_PROCREC	25
#define SIZE_RETREC		16
#define SIZE_ARGREC		16
#define SIZE_LOCREC		16
#define SIZE_LBLREC		20

int BuildFile_init();
void BuildFile_free();
void buildFileFormat();

#endif

⌨️ 快捷键说明

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