punesemu/puNES

Mapper 406 submapper 1 is broken

Closed this issue · 2 comments

game fails to load

address = (address & 0x9FFF) ^ 0x6000;

this line should be

address = address ^ 0x6000;

thanks. now working.

Thx to you for the report and for the fix.