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

Method FST

source/emulation/cpu/common/fpu.cpp:551–560  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

549}
550
551void FPU::FST(int st, int other) {
552 this->tags[other] = this->tags[st];
553 if (isRegCached[st]) {
554 this->regCache[other] = this->regCache[st];
555 this->isRegCached[other] = true;
556 } else {
557 this->regs[other] = this->regs[st];
558 this->isRegCached[other] = false;
559 }
560}
561
562static void setFlags(CPU* cpu, int newFlags) {
563 cpu->lazyFlagType = FLAGS_NONE;

Callers 11

common_FLD_STiFunction · 0.80
common_FST_STiFunction · 0.80
common_FST_STi_PopFunction · 0.80
common_FCMOV_ST0_STj_CFFunction · 0.80
common_FCMOV_ST0_STj_ZFFunction · 0.80
common_FCMOV_ST0_STj_PFFunction · 0.80
common_FCMOV_ST0_STj_NCFFunction · 0.80
common_FCMOV_ST0_STj_NZFFunction · 0.80
common_FCMOV_ST0_STj_NPFFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected