| 1059 | } |
| 1060 | |
| 1061 | void CPU::removeOF() { |
| 1062 | #ifdef _DEBUG |
| 1063 | if (this->lazyFlagType !=FLAGS_NONE) { |
| 1064 | kpanic("CPU::fillFlags must be called before CPU::removeOF"); |
| 1065 | } |
| 1066 | #endif |
| 1067 | this->flags&=~OF; |
| 1068 | } |
| 1069 | |
| 1070 | U32 CPU::pop32() { |
| 1071 | U32 val = memory->readd(this->seg[SS].address + (THIS_ESP & this->stackMask)); |