aboutsummaryrefslogtreecommitdiff
path: root/source/dsp1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/dsp1.cpp')
-rw-r--r--source/dsp1.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/dsp1.cpp b/source/dsp1.cpp
index 244d8b0..4e32a54 100644
--- a/source/dsp1.cpp
+++ b/source/dsp1.cpp
@@ -125,14 +125,6 @@ uint8 S9xGetDSP (uint16 address)
{
uint8 t;
-#ifdef DEBUGGER
- if (Settings.TraceDSP)
- {
- sprintf (String, "DSP read: 0x%04X", address);
- S9xMessage (S9X_TRACE, S9X_TRACE_DSP1, String);
- }
-#endif
-
t=(*GetDSP)(address);
//DSP1GetByte(address);
return (t);
@@ -140,14 +132,6 @@ uint8 S9xGetDSP (uint16 address)
void S9xSetDSP (uint8 byte, uint16 address)
{
-#ifdef DEBUGGER
- missing.unknowndsp_write = address;
- if (Settings.TraceDSP)
- {
- sprintf (String, "DSP write: 0x%04X=0x%02X", address, byte);
- S9xMessage (S9X_TRACE, S9X_TRACE_DSP1, String);
- }
-#endif
(*SetDSP)(byte, address);
//DSP1SetByte(byte, address);
}