| 549 | } |
| 550 | |
| 551 | void 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 | |
| 562 | static void setFlags(CPU* cpu, int newFlags) { |
| 563 | cpu->lazyFlagType = FLAGS_NONE; |
no outgoing calls
no test coverage detected