Intellivision: TCI throw console warning instead of error, fixes popeye

This commit is contained in:
alyosha-tas 2018-03-02 16:59:38 -05:00
parent 439b908bdc
commit 47cfe9ceb6
1 changed files with 4 additions and 1 deletions

View File

@ -245,7 +245,10 @@ namespace BizHawk.Emulation.Cores.Components.CP1610
Interruptible = true;
break;
case 0x005: // TCI
throw new ArgumentException(UNEXPECTED_TCI);
cycles = 4;
Interruptible = false;
Console.WriteLine(UNEXPECTED_TCI);
break;
case 0x006: // CLRC
FlagC = false;
cycles = 4;