summaryrefslogtreecommitdiff
path: root/src/icont/opcode.h
blob: ca98cf1d402dbe66902def99f370168f04edb95f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Opcode table structure.
 */

struct opentry {
   char *op_name;		/* name of opcode */
   int   op_code;		/* opcode number */
   };

/*
 * External definitions.
 */

extern struct opentry optable[];
extern int NOPCODES;

#include "../h/opdefs.h"