date and time created 83/08/11 20:49:31 by sam
[unix-history] / usr / src / old / as.vax / aspseudo.c
... / ...
CommitLineData
1/*
2 * Copyright (c) 1982 Regents of the University of California
3 */
4#ifndef lint
5static char sccsid[] = "@(#)aspseudo.c 4.5 %G%";
6#endif not lint
7
8#include <stdio.h>
9#include "as.h"
10
11#define OP(name, eopcode, popcode, nargs, arg1, arg2, arg3, arg4, arg5, arg6) \
12 { \
13 name, popcode, nargs, arg1, arg2, arg3, arg4, arg5, arg6, \
14 (nargs == 0 ? INST0:INSTn), eopcode \
15 }
16#define PSEUDO(name, type, tag) \
17 { \
18 name, type, 0, 0, 0, 0, 0, 0, 0, \
19 tag, CORE \
20 }
21
22readonly struct Instab instab[] = {
23#include "instrs.as"
24PSEUDO("\0\0\0\0\0\0\0\0\0\0", 0, 0)
25};