6502-emulator/src/opcode/handler/system-opcode-handler-conta...

7 lines
194 B
C++

#include "system-opcode-handler-container.h"
namespace emu_6502 {
SystemOpcodeHandlerContainer::SystemOpcodeHandlerContainer() {
handlers.insert({Op::NOP, [](Machine&) {}});
}
}