#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