ewm/src/cpu_test.lua

14 lines
295 B
Lua
Raw Normal View History

2017-09-19 01:21:57 +00:00
2017-09-22 11:36:24 +00:00
cpu:onBeforeExecuteInstruction(0x60, function(cpu, opcode, operand)
end)
2017-09-19 01:21:57 +00:00
2017-09-22 11:36:24 +00:00
cpu:onBeforeExecuteInstruction(0x20, function(cpu, opcode, operand)
end)
2017-09-19 01:21:57 +00:00
2017-09-22 11:36:24 +00:00
cpu:onAfterExecuteInstruction(0x60, function(cpu, opcode, operand)
end)
2017-09-19 01:21:57 +00:00
2017-09-22 11:36:24 +00:00
cpu:onAfterExecuteInstruction(0x20, function(cpu, opcode, operand)
end)
2017-09-19 01:21:57 +00:00