Update CartridgeDevice.cs

This commit is contained in:
alyosha-tas 2017-05-29 15:05:06 -04:00 committed by GitHub
parent 321f62a242
commit 66b13a2d78
1 changed files with 3 additions and 0 deletions

View File

@ -81,6 +81,9 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge
case 0x0005: // Ocean
result = new Mapper0005(chipAddress, chipBank, chipData);
break;
case 0x0007: // Fun Play
result = new Mapper0007(chipData, game, exrom);
break;
case 0x0008: // SuperGame
result = new Mapper0008(chipData);
break;