MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / FDIV

Method FDIV

source/emulation/cpu/common/fpu.cpp:478–485  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

476}
477
478void 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
487void FPU::FDIVR(int st, int other) {
488 if (KSystem::useF64) {

Callers 3

common_FDIV_ST0_STjFunction · 0.80
common_FDIV_STi_ST0Function · 0.80
common_FDIV_STi_ST0_PopFunction · 0.80

Calls 1

extF80_divFunction · 0.85

Tested by

no test coverage detected