1 2 3 4 5 6 7 8 9 10
#ifndef OPCODE_H #define OPCODE_H extern const struct opcode_table { int negate:8; int swap:8; } opcode_table[]; #endif