| 1005 | } |
| 1006 | |
| 1007 | void CPU::removeZF() { |
| 1008 | #ifdef _DEBUG |
| 1009 | if (this->lazyFlagType !=FLAGS_NONE) { |
| 1010 | kpanic("CPU::fillFlags must be called before CPU::removeZF"); |
| 1011 | } |
| 1012 | #endif |
| 1013 | this->flags&=~ZF; |
| 1014 | } |
| 1015 | |
| 1016 | void CPU::addCF() { |
| 1017 | #ifdef _DEBUG |
no test coverage detected