| 476 | } |
| 477 | |
| 478 | void FPU::FDIV(int st, int other) { |
| 479 | if (KSystem::useF64) { |
| 480 | this->regCache[st].d = getF64(st) / getF64(other); |
| 481 | } else { |
| 482 | this->regs[st] = extF80_div(this->regs[st], this->regs[other]); |
| 483 | } |
| 484 | //flags and such :) |
| 485 | } |
| 486 | |
| 487 | void FPU::FDIVR(int st, int other) { |
| 488 | if (KSystem::useF64) { |
no test coverage detected