Skip to content

Commit

Permalink
C64: Fix mapper F
Browse files Browse the repository at this point in the history
  • Loading branch information
alyosha-tas committed Mar 13, 2018
1 parent c4497b7 commit d481624
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,13 @@ private void UpdateState()
_currentBank = _banks[_bankNumber];
}

public override int ReadDE00(int addr)
{
BankSet(0);

return 0;
}

public override void WriteDE00(int addr, int val)
{
BankSet(addr);
Expand Down

0 comments on commit d481624

Please sign in to comment.