gb6/src/instructions.h
2022-06-20 19:09:29 -05:00

13 lines
208 B
C

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