Add a mostly non-functional Gameboy CPU and the skeleton of a Gameboy assembler intended for unit tests.
13 lines
254 B
C
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
|