| 1041 | } |
| 1042 | |
| 1043 | void CPU::removeAF() { |
| 1044 | #ifdef _DEBUG |
| 1045 | if (this->lazyFlagType !=FLAGS_NONE) { |
| 1046 | kpanic("CPU::fillFlags must be called before CPU::removeAF"); |
| 1047 | } |
| 1048 | #endif |
| 1049 | this->flags&=~AF; |
| 1050 | } |
| 1051 | |
| 1052 | void CPU::addOF() { |
| 1053 | #ifdef _DEBUG |