6502-emulator/src/opcode/handler/system-opcode-handler-container.cpp
2019-04-28 13:16:57 +01:00

7 lines
194 B
C++

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