Skip to content

Commit

Permalink
Support for mapper 23.10
Browse files Browse the repository at this point in the history
  • Loading branch information
rdanbrook committed Dec 10, 2016
1 parent 091f5a5 commit b5f4f51
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelog.txt
Expand Up @@ -14,11 +14,13 @@ Shell:

libretro:
- Added ability to load custom palettes
- Added turbo buttons

Core:

Additions:
- RAM Power-on State setting
- Support for mapper 23.10

Fixes:
- VRC2 Mirroring bug (koitsu, lidnariq)
Expand Down
12 changes: 11 additions & 1 deletion source/core/board/NstBoard.cpp
Expand Up @@ -1814,7 +1814,17 @@ namespace Nes

case 23:

if (submapper == 15)
if (submapper == 10)
{
Chips::Type& chip = chips.Add(L"Konami VRC IV");

chip.Pin(3) = L"PRG A3";
chip.Pin(4) = L"PRG A2";

name = "KONAMI VRC4";
id = Type::KONAMI_VRC4_0;
}
else if (submapper == 15)
{
name = "KONAMI VRC2";
id = Type::KONAMI_VRC2;
Expand Down

1 comment on commit b5f4f51

@joepogo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey Rdanbrook, is there a possibility that something is a little off in this implementation? Crisis force prototype will now run but has garbled sprites everywhere. (tested in other emus and works fine)

Please sign in to comment.