ewm/src/cpu_test.lua
2017-09-22 11:41:51 +00:00

14 lines
295 B
Lua

cpu:onBeforeExecuteInstruction(0x60, function(cpu, opcode, operand)
end)
cpu:onBeforeExecuteInstruction(0x20, function(cpu, opcode, operand)
end)
cpu:onAfterExecuteInstruction(0x60, function(cpu, opcode, operand)
end)
cpu:onAfterExecuteInstruction(0x20, function(cpu, opcode, operand)
end)