#ifndef WH_MACHINE_M68K_H_5e6c0563_ #define WH_MACHINE_M68K_H_5e6c0563_ /* This file is in the public domain. */ typedef struct instr INSTR; #define MAXWORDS 5 /* max # of words in an (extended) opcode */ #define MAXIFSDEPTH 8 /* max depth of %?...%. nesting */ struct instr { unsigned char nwords; struct { unsigned short int mask; unsigned short int cmp; } words[MAXWORDS]; const char *desc; } ; #endif