Remove 1 commented line

This commit is contained in:
liuk7071 2023-08-07 21:05:21 +02:00
parent 56b802976d
commit 6c8bde7389

View file

@ -4,7 +4,6 @@
void Interpreter::step(CpuCore* core, Memory* mem, Disassembler* disassembler) {
// Handle interrupts
core->checkInterrupt(mem->interrupt);
// core->pc -= 4;
CpuCore::Instruction instr = { .raw = mem->read<u32>(core->pc) };