Add missing program counter increment

This commit is contained in:
Jussi Saurio
2025-07-24 10:22:26 +03:00
parent b14124ad3b
commit 7eb52c65d3

View File

@@ -1620,6 +1620,7 @@ pub fn op_column(
state.registers[*dest] = Register::Value(default.clone());
}
}
state.pc += 1;
return Ok(InsnFunctionStepResult::Step);
};