gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 4e281842c04a0b9ee211df20838bcca9c6447d73
parent 52795a851431fa06a84424a41d259cbf609ba194
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun,  9 Mar 2025 01:01:22 +0100

keep flash write logging in debug

Diffstat:
Msource/xtLib/xtUc.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/source/xtLib/xtUc.cpp b/source/xtLib/xtUc.cpp @@ -172,7 +172,9 @@ namespace xt if(addr >= g_romAddr && addr < g_romAddr + Rom::Size) { +#if defined(_DEBUG) && defined(_WIN32) MCLOG("write8 TO ROM addr=" << MCHEXN(addr, 8) << ", value=" << MCHEXN(val,2) << ", pc=" << MCHEXN(getPC(), 8)); +#endif m_flash.write(addr - g_romAddr, val); return; }