126420Ssam #ifndef lint 2*36561Sbostic static char sccsid[] = "@(#)optab.c 1.2 (Berkeley) 01/16/89"; 326420Ssam #endif 426420Ssam 526420Ssam #include "defs.h" 626420Ssam #include "optab.h" 726420Ssam 826420Ssam struct optab optab[] = { 926420Ssam #define OP(a,b,c,d,e,f,g,h,i) {a,b,c,d,e,f,g,h,i} 10*36561Sbostic #include "instrs.adb" 11*36561Sbostic 0 12*36561Sbostic }; 1326420Ssam 14*36561Sbostic char *regname[] = { 15*36561Sbostic "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", 16*36561Sbostic "r8", "r9", "r10", "r11", "r12", "fp", "sp", "pc" 1726420Ssam }; 18