| 560 | } |
| 561 | |
| 562 | static void setFlags(CPU* cpu, int newFlags) { |
| 563 | cpu->lazyFlagType = FLAGS_NONE; |
| 564 | cpu->flags &= ~FMASK_TEST; |
| 565 | cpu->flags |= (newFlags & FMASK_TEST); |
| 566 | } |
| 567 | |
| 568 | void FPU::FCOMI(CPU* cpu, int st, int other) { |
| 569 | U32 stTag = GetTag(cpu, st); |
no outgoing calls
no test coverage detected