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

@@ -26,16 +26,18 @@ static uint8 FunkyMode;
static uint8 FP_FASTAPASS(2) QZ_Read(int w, uint8 ret) {
if (w) {
//if(X.PC==0xdc7d) return(0xFF);
//printf("Blah: %04x\n",X.PC);
//FCEUI_DumpMem("dmp2",0xc000,0xffff);
/* if(X.PC==0xdc7d) return(0xFF);
printf("Blah: %04x\n",X.PC);
FCEUI_DumpMem("dmp2",0xc000,0xffff);
*/
ret |= (QZValR & 0x7) << 2;
QZValR = QZValR >> 3;
if (FunkyMode) {
//ret=0x14;
//puts("Funky");
/*ret=0x14;
puts("Funky");
*/
QZValR |= 0x28;
} else {
QZValR |= 0x38;
@@ -46,11 +48,11 @@ static uint8 FP_FASTAPASS(2) QZ_Read(int w, uint8 ret) {
static void QZ_Strobe(void) {
QZValR = QZVal;
//puts("Strobe");
/* puts("Strobe"); */
}
static void FP_FASTAPASS(1) QZ_Write(uint8 V) {
//printf("Wr: %02x\n",V);
/* printf("Wr: %02x\n",V); */
FunkyMode = V & 4;
}