| 336 | } |
| 337 | |
| 338 | void DADD() |
| 339 | { |
| 340 | s64 result; |
| 341 | bool overflow = _add64_Overflow( cpuRegs.GPR.r[_Rs_].SD[0], cpuRegs.GPR.r[_Rt_].SD[0], result ); |
| 342 | if (overflow || !_Rd_) return; |
| 343 | cpuRegs.GPR.r[_Rd_].SD[0] = result; |
| 344 | } |
| 345 | |
| 346 | // Rd = Rs - Rt (Exception on Integer Overflow) |
| 347 | void SUB() |
nothing calls this directly
no test coverage detected