Rd = Rs + Rt (Exception on Integer Overflow)
| 328 | |
| 329 | // Rd = Rs + Rt (Exception on Integer Overflow) |
| 330 | void ADD() |
| 331 | { |
| 332 | s64 result; |
| 333 | bool overflow = _add32_Overflow( cpuRegs.GPR.r[_Rs_].SD[0], cpuRegs.GPR.r[_Rt_].SD[0], result ); |
| 334 | if (overflow || !_Rd_) return; |
| 335 | cpuRegs.GPR.r[_Rd_].SD[0] = result; |
| 336 | } |
| 337 | |
| 338 | void DADD() |
| 339 | { |
nothing calls this directly
no test coverage detected