Finishing the main and disabling the invalid opcode throw for now

This commit is contained in:
AnonymusRaccoon
2020-02-11 14:47:56 +01:00
parent f886f8f53c
commit d7002336fa
6 changed files with 11 additions and 7 deletions
+2 -1
View File
@@ -218,7 +218,8 @@ namespace ComSquare::CPU
case Instructions::ADC_ABSXl:return this->ADC(this->_getAbsoluteIndexedByXLongAddr());
default:
throw InvalidOpcode("CPU", opcode);
return 0;
//throw InvalidOpcode("CPU", opcode);
}
}