[PICA] Implement address registers

This commit is contained in:
wheremyfoodat 2022-09-25 16:12:35 +03:00
parent 63ff2ac0de
commit 9eb661c768
3 changed files with 27 additions and 5 deletions

View file

@ -23,4 +23,8 @@ void PICAShader::reset() {
floatUniforms.fill(zero);
outputs.fill(zero);
tempRegisters.fill(zero);
addrRegister.x() = 0;
addrRegister.y() = 0;
loopCounter = 0;
}