X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdsp.cpp;h=710b90a169ad33fa05c478a84b2362e9543aacef;hb=cd61d997688c71e8eeecf39e4ce9d77a08872d7b;hp=de54c3e23466b935720add333c2ae648d748d1ba;hpb=053fb8314018df7866ade5c62c98d90007e47199;p=virtualjaguar diff --git a/src/dsp.cpp b/src/dsp.cpp index de54c3e..710b90a 100644 --- a/src/dsp.cpp +++ b/src/dsp.cpp @@ -639,10 +639,10 @@ void DSPWriteLong(uint32 offset, uint32 data, uint32 who/*=UNKNOWN*/) // WriteLog("dsp: writing %.8x at 0x%.8x\n",data,offset); if (offset >= DSP_WORK_RAM_BASE && offset <= DSP_WORK_RAM_BASE + 0x1FFF) { -if (offset == 0xF1BE2C) +/*if (offset == 0xF1BE2C) { WriteLog("DSP: %s is writing %08X at location 0xF1BE2C (DSP_PC: %08X)...\n", whoName[who], data, dsp_pc - 2); -} +}//*/ offset -= DSP_WORK_RAM_BASE; SET32(dsp_ram_8, offset, data); return;