Implementing the REP instruction

This commit is contained in:
AnonymusRaccoon
2020-02-14 11:22:38 +01:00
parent fbd10e8f48
commit 31aa3c843e
4 changed files with 61 additions and 4 deletions
+2
View File
@@ -279,6 +279,8 @@ namespace ComSquare::CPU
case Instructions::SEP: this->SEP(this->_getImmediateAddr()); return 3;
case Instructions::REP: this->REP(this->_getImmediateAddr()); return 3;
default:
throw InvalidOpcode("CPU", opcode);
}