iop:interpreter: remove special case for unsigned division

This commit is contained in:
Gregory Hainaut
2016-01-27 18:20:54 +01:00
parent 135cdfca46
commit 11f59ada16
-5
View File
@@ -94,11 +94,6 @@ void psxDIVU() {
_rLo_ = 0xFFFFFFFFu;
_rHi_ = _rRs_;
} else if (_rRs_ == 0x80000000u && _rRt_ == 0xFFFFFFFFu) {
// x86 overflow
_rLo_ = 0;
_rHi_ = 0x80000000u;
} else {
// Normal behavior
_rLo_ = _rRs_ / _rRt_;