Files
gb-emu/src/gbasm/opcodes.h
Max Regan 6e2f4096a2 gb-emu: initial commit
Add a mostly non-functional Gameboy CPU and the skeleton
of a Gameboy assembler intended for unit tests.
2017-05-10 22:40:12 -07:00

13 lines
254 B
C

#ifndef GBASM_OPCODES_H
#define GBASM_OPCODES_H
#include "gbasm/types.h"
/**
* Given a downcased opcode token, gets teh gbasm_op_info structure
* which describes it.
*/
const struct gbasm_op_info *gbasm_get_opcode_info(const char *opcode);
#endif