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

Method FDIVR

source/emulation/cpu/common/fpu.cpp:487–494  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

485}
486
487void FPU::FDIVR(int st, int other) {
488 if (KSystem::useF64) {
489 this->regCache[st].d = getF64(other) / getF64(st);
490 } else {
491 this->regs[st] = extF80_div(this->regs[other], this->regs[st]);
492 }
493 // flags and such :)
494}
495
496void FPU::FMUL(int st, int other) {
497 if (KSystem::useF64) {

Callers 3

common_FDIVR_ST0_STjFunction · 0.80
common_FDIVR_STi_ST0Function · 0.80
common_FDIVR_STi_ST0_PopFunction · 0.80

Calls 1

extF80_divFunction · 0.85

Tested by

no test coverage detected