#ifndef F6502_OPCODES_H_ #define F6502_OPCODES_H_ #include int f6502_fprintf_instr(FILE* file, uint8_t opcode, uint8_t* operand); void f6502_dump_instr(f6502_Core* core, uint8_t opcode, uint8_t* operand); #endif // F6502_OPCODES_H_