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

📄 aspseudo.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
/* *	Copyright (c) 1982 Regents of the University of California */#ifndef lintstatic char sccsid[] = "@(#)aspseudo.c	4.3 ULTRIX 9/4/90";#endif /* not lint *//************************************************************************ *									* *			Modification History				* * * 001  Tanya Klinchina, 20-Nov-1989 *      Added support for vector instructions. * ************************************************************************/#include <stdio.h>#include "as.h"#define	OP(name, eopcode, popcode, nargs, arg1, arg2, arg3, arg4, arg5, arg6) \	{ \		name, popcode, nargs, arg1, arg2, arg3, arg4, arg5, arg6, \		(nargs == 0 ? INST0:INSTn), eopcode \	}#define	VOP(name, instr, eopcode, popcode, format, ctrlcode, nargs, arg1, arg2, arg3, arg4, arg5, arg6) \	{ \		name, popcode, nargs, arg1, arg2, arg3, arg4, arg5, arg6, \		instr, eopcode, format, ctrlcode \	}#define	PSEUDO(name, type, tag) \	{ \		name, type, 0,   0, 0, 0, 0, 0, 0, \		tag, CORE \	}readonly struct Instab instab[] = {#include "instrs.as"PSEUDO("\0\0\0\0\0\0\0\0\0\0", 0, 0)};

⌨️ 快捷键说明

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