make the opcode a 16 bit enum to help with debugging (I hope this doesn't

cause problems on weird archs).
This commit is contained in:
Bill Currie 2002-06-09 16:27:31 +00:00
parent 58782333a9
commit e3055837fa

View file

@ -270,7 +270,7 @@ opcode_t *PR_Opcode (short opcode);
void PR_Opcode_Init (void);
typedef struct statement_s {
unsigned short op;
pr_opcode_e op:16;
unsigned short a,b,c;
} dstatement_t;