Commodore64: Writing to expansion memory space while banked in does not write through to underlying RAM.

This commit is contained in:
saxxonpike 2013-08-09 05:33:40 +00:00
parent 8695ce07a4
commit 75f279a30b
1 changed files with 2 additions and 2 deletions

View File

@ -527,10 +527,10 @@ namespace BizHawk.Emulation.Computers.Commodore64.MOS
break;
case PLABank.Expansion0:
WriteExpansionLo(addr, val);
break;
return;
case PLABank.Expansion1:
WriteExpansionHi(addr, val);
break;
return;
case PLABank.KernalROM:
break;
case PLABank.None: