BSD 4_4 release
[unix-history] / usr / src / old / adb / adb.tahoe / optab.c
CommitLineData
6f7a3ac3
KB
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
ad787160
C
5 * This module is believed to contain source code proprietary to AT&T.
6 * Use and redistribution is subject to the Berkeley Software License
7 * Agreement and your Software Agreement with AT&T (Western Electric).
6f7a3ac3
KB
8 */
9
6c7af193 10#ifndef lint
ad787160 11static char sccsid[] = "@(#)optab.c 5.1 (Berkeley) 4/4/91";
6f7a3ac3 12#endif /* not lint */
6c7af193
SL
13
14#include "defs.h"
15#include "optab.h"
16
17struct optab optab[] = {
18#define OP(a,b,c,d,e,f,g,h,i) {a,b,c,d,e,f,g,h,i}
f582ecdc
KB
19#include "instrs.adb"
20 0
6c7af193
SL
21};
22
f582ecdc
KB
23char *regname[] = {
24 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
25 "r8", "r9", "r10", "r11", "r12", "fp", "sp", "pc"
26};