gb6/main/instructions.h

11 lines
169 B
C

#ifndef _INSTRUCTIONS_H
#define _INSTRUCTIONS_H
struct instruction {
int opcode;
const char *format;
};
extern const struct instruction instructions[];
#endif