Start undoing C++ comments

This commit is contained in:
retro-wertz
2017-10-15 02:07:42 +08:00
parent e428160996
commit ebca2248d0
75 changed files with 641 additions and 582 deletions

View File

@@ -40,8 +40,9 @@ static void Sync(void) {
setprg16(0x8000, (prg_reg >> 5) & 7);
setprg16(0xC000, (prg_reg >> 5) & 7);
}
// Mirroring (0=Vert, 1=Horz)
// https://wiki.nesdev.com/w/index.php/INES_Mapper_057
/* Mirroring (0=Vert, 1=Horz)
* https://wiki.nesdev.com/w/index.php/INES_Mapper_057
*/
setmirror((prg_reg & 8) ? MI_H : MI_V);
setchr8((chr_reg & 7) | (prg_reg & 7) | ((chr_reg & 0x40) >> 3));
}