Adding inx and iny and improving the debugger

This commit is contained in:
AnonymusRaccoon
2020-02-28 16:41:57 +01:00
parent 258194dba7
commit 7b34473e63
6 changed files with 110 additions and 8 deletions
+3
View File
@@ -348,6 +348,9 @@ namespace ComSquare::CPU
case Instructions::TAY: this->TAY(); return 2;
case Instructions::TXS: this->TXS(); return 2;
case Instructions::INX: this->INX(); return 2;
case Instructions::INY: this->INY(); return 2;
default:
throw InvalidOpcode("CPU", opcode);
}