mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-25 23:25:41 +00:00
GTE: Add some missing flag clear/updates
This commit is contained in:
parent
390639e795
commit
fc74d08641
|
@ -665,6 +665,8 @@ void Core::Execute_NCDT(Instruction inst)
|
||||||
|
|
||||||
void Core::Execute_MVMVA(Instruction inst)
|
void Core::Execute_MVMVA(Instruction inst)
|
||||||
{
|
{
|
||||||
|
m_regs.FLAG.Clear();
|
||||||
|
|
||||||
// TODO: Remove memcpy..
|
// TODO: Remove memcpy..
|
||||||
s16 M[3][3];
|
s16 M[3][3];
|
||||||
switch (inst.mvmva_multiply_matrix)
|
switch (inst.mvmva_multiply_matrix)
|
||||||
|
@ -731,10 +733,14 @@ void Core::Execute_MVMVA(Instruction inst)
|
||||||
}
|
}
|
||||||
|
|
||||||
MulMatVec(M, T, Vx, Vy, Vz, inst.GetShift(), inst.lm);
|
MulMatVec(M, T, Vx, Vy, Vz, inst.GetShift(), inst.lm);
|
||||||
|
|
||||||
|
m_regs.FLAG.UpdateError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Core::Execute_DPCS(Instruction inst)
|
void Core::Execute_DPCS(Instruction inst)
|
||||||
{
|
{
|
||||||
|
m_regs.FLAG.Clear();
|
||||||
|
|
||||||
const u8 shift = inst.GetShift();
|
const u8 shift = inst.GetShift();
|
||||||
const bool lm = inst.lm;
|
const bool lm = inst.lm;
|
||||||
|
|
||||||
|
@ -762,6 +768,8 @@ void Core::Execute_DPCS(Instruction inst)
|
||||||
TruncateAndSetIR<1>(m_regs.MAC1, lm);
|
TruncateAndSetIR<1>(m_regs.MAC1, lm);
|
||||||
TruncateAndSetIR<2>(m_regs.MAC2, lm);
|
TruncateAndSetIR<2>(m_regs.MAC2, lm);
|
||||||
TruncateAndSetIR<3>(m_regs.MAC3, lm);
|
TruncateAndSetIR<3>(m_regs.MAC3, lm);
|
||||||
|
|
||||||
|
m_regs.FLAG.UpdateError();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace GTE
|
} // namespace GTE
|
Loading…
Reference in a new issue