| 1032 | } |
| 1033 | |
| 1034 | void CPU::addAF() { |
| 1035 | #ifdef _DEBUG |
| 1036 | if (this->lazyFlagType !=FLAGS_NONE) { |
| 1037 | kpanic("CPU::fillFlags must be called before CPU::addAF"); |
| 1038 | } |
| 1039 | #endif |
| 1040 | this->flags|=AF; |
| 1041 | } |
| 1042 | |
| 1043 | void CPU::removeAF() { |
| 1044 | #ifdef _DEBUG |