mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
dyncom: Simplify some comparisons in CondPassed
This commit is contained in:
parent
01dd833ffa
commit
dc1b024b80
1 changed files with 4 additions and 4 deletions
|
@ -77,13 +77,13 @@ static bool CondPassed(ARMul_State* cpu, unsigned int cond) {
|
|||
case ConditionCode::LS:
|
||||
return (!c_flag || z_flag);
|
||||
case ConditionCode::GE:
|
||||
return ((!n_flag && !v_flag) || (n_flag && v_flag));
|
||||
return (n_flag == v_flag);
|
||||
case ConditionCode::LT:
|
||||
return ((n_flag && !v_flag) || (!n_flag && v_flag));
|
||||
return (n_flag != v_flag);
|
||||
case ConditionCode::GT:
|
||||
return ((!n_flag && !v_flag && !z_flag) || (n_flag && v_flag && !z_flag));
|
||||
return (!z_flag && (n_flag == v_flag));
|
||||
case ConditionCode::LE:
|
||||
return ((n_flag && !v_flag) || (!n_flag && v_flag)) || z_flag;
|
||||
return (z_flag || (n_flag != v_flag));
|
||||
case ConditionCode::AL:
|
||||
case ConditionCode::NV: // Unconditional
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue