xref: /csrg-svn/old/adb/adb.tahoe/optab.c (revision 47819)
1*47819Sbostic /*-
2*47819Sbostic  * Copyright (c) 1991 The Regents of the University of California.
3*47819Sbostic  * All rights reserved.
4*47819Sbostic  *
5*47819Sbostic  * %sccs.include.proprietary.c%
6*47819Sbostic  */
7*47819Sbostic 
826420Ssam #ifndef lint
9*47819Sbostic static char sccsid[] = "@(#)optab.c	5.1 (Berkeley) 04/04/91";
10*47819Sbostic #endif /* not lint */
1126420Ssam 
1226420Ssam #include "defs.h"
1326420Ssam #include "optab.h"
1426420Ssam 
1526420Ssam struct optab optab[] = {
1626420Ssam #define OP(a,b,c,d,e,f,g,h,i) {a,b,c,d,e,f,g,h,i}
1736561Sbostic #include "instrs.adb"
1836561Sbostic 	0
1936561Sbostic };
2026420Ssam 
2136561Sbostic char *regname[] = {
2236561Sbostic 	"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
2336561Sbostic 	"r8", "r9", "r10", "r11", "r12", "fp", "sp", "pc"
2426420Ssam };
25