aboutsummaryrefslogtreecommitdiff
path: root/source/getset.h
diff options
context:
space:
mode:
authoraliaspider2014-10-28 22:45:14 +0100
committeraliaspider2014-10-28 22:45:14 +0100
commitf518934e3b664d0cf9535a391d6572300958d3bf (patch)
treeac24ebff344f7e8163a3b14ed228e3a26aa6915f /source/getset.h
parenta9c9cc3e30e50e8d90e355aa7ea84ae846e0c9bc (diff)
downloadsnesemu-f518934e3b664d0cf9535a391d6572300958d3bf.tar.gz
snesemu-f518934e3b664d0cf9535a391d6572300958d3bf.tar.bz2
snesemu-f518934e3b664d0cf9535a391d6572300958d3bf.zip
cleanups (cont.)
Diffstat (limited to 'source/getset.h')
-rw-r--r--source/getset.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/getset.h b/source/getset.h
index 71f54c7..189991b 100644
--- a/source/getset.h
+++ b/source/getset.h
@@ -412,9 +412,6 @@ void S9xSetByte (uint8 Byte, uint32 Address)
MessageBox(GUI.hWnd, address, TEXT("SetByte"), MB_OK);
#endif
-#ifdef DEBUGGER
- printf ("W(B) %06x\n", Address);
-#endif
return;
}
}
@@ -525,9 +522,6 @@ void S9xSetWord (uint16 Word, uint32 Address)
return;
case CMemory::MAP_DEBUG:
-#ifdef DEBUGGER
- printf ("W(W) %06x\n", Address);
-#endif
case CMemory::MAP_SPC7110_DRAM:
#ifdef SPC7110_DEBUG
@@ -570,9 +564,6 @@ void S9xSetWord (uint16 Word, uint32 Address)
MessageBox(GUI.hWnd, address, TEXT("SetWord"), MB_OK);
#endif
-#ifdef DEBUGGER
- printf ("W(W) %06x\n", Address);
-#endif
return;
}
}
@@ -624,9 +615,6 @@ uint8 *GetBasePointer (uint32 Address)
case CMemory::MAP_SETA_DSP:
return Memory.SRAM;
case CMemory::MAP_DEBUG:
-#ifdef DEBUGGER
- printf ("GBP %06x\n", Address);
-#endif
default:
case CMemory::MAP_NONE:
@@ -636,9 +624,6 @@ uint8 *GetBasePointer (uint32 Address)
MessageBox(GUI.hWnd, fsd, TEXT("Rogue DMA"), MB_OK);
#endif
-#ifdef DEBUGGER
- printf ("GBP %06x\n", Address);
-#endif
return (0);
}
}