Intellivision: TCI throw console warning instead of error, fixes popeye
This commit is contained in:
parent
439b908bdc
commit
47cfe9ceb6
|
@ -245,7 +245,10 @@ namespace BizHawk.Emulation.Cores.Components.CP1610
|
||||||
Interruptible = true;
|
Interruptible = true;
|
||||||
break;
|
break;
|
||||||
case 0x005: // TCI
|
case 0x005: // TCI
|
||||||
throw new ArgumentException(UNEXPECTED_TCI);
|
cycles = 4;
|
||||||
|
Interruptible = false;
|
||||||
|
Console.WriteLine(UNEXPECTED_TCI);
|
||||||
|
break;
|
||||||
case 0x006: // CLRC
|
case 0x006: // CLRC
|
||||||
FlagC = false;
|
FlagC = false;
|
||||||
cycles = 4;
|
cycles = 4;
|
||||||
|
|
Loading…
Reference in New Issue