bsnes/higan/processor/huc6280/instruction.cpp

10 lines
167 B
C++

#define op(id, name, ...) case id: return instruction##name(__VA_ARGS__);
auto HuC6280::instruction() -> void {
switch(opcode()) {
op(0xea, NOP)
}
}
#undef op