Forgot opcode files.

This commit is contained in:
John Gilmore
1991-11-13 04:00:22 +00:00
parent 19230be6ac
commit cd56d31436
3 changed files with 244 additions and 1 deletions

19
gdb/rs6k-opcode.h Executable file
View File

@ -0,0 +1,19 @@
typedef int (*FUN)();
typedef struct {
char *operator; /* opcode name */
char *opr_ext; /* opcode name ext. */
char *format; /* opcode format */
char p_opcode; /* primary opcode */
int e_opcode; /* extended opcode */
char oprnd_format [6]; /* operand format */
} OPCODE;
OPCODE rs6k_ops [] = {
#include "rs6k-opcode.def"
};
#define NOPCODES (sizeof (rs6k_ops) / sizeof (OPCODE))