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 7a933e00b31c45f0ad57b216942c4a57182247ac
parent 7106cde092dff7f69651add03b3f4357a2dce518
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun,  9 Mar 2025 00:45:31 +0100

remove flash rom write logging

Diffstat:
Msource/hardwareLib/am29f.cpp | 2+-
Msource/xtLib/xtUc.cpp | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/hardwareLib/am29f.cpp b/source/hardwareLib/am29f.cpp @@ -161,7 +161,7 @@ namespace hwLib { if(_addr >= m_size) return; - MCLOG("Programming word at " << MCHEX(_addr) << ", value " << MCHEXN(_data, 4)); +// MCLOG("Programming word at " << MCHEX(_addr) << ", value " << MCHEXN(_data, 4)); const auto old = mc68k::memoryOps::readU16(m_buffer, _addr); // "A bit cannot be programmed from a 0 back to a 1" const auto v = _data & old; diff --git a/source/xtLib/xtUc.cpp b/source/xtLib/xtUc.cpp @@ -142,7 +142,7 @@ namespace xt if(addr >= g_romAddr && addr < g_romAddr + Rom::Size) { - MCLOG("write16 TO ROM addr=" << MCHEXN(addr, 8) << ", value=" << MCHEXN(val,4) << ", pc=" << MCHEXN(getPC(), 8)); +// MCLOG("write16 TO ROM addr=" << MCHEXN(addr, 8) << ", value=" << MCHEXN(val,4) << ", pc=" << MCHEXN(getPC(), 8)); m_flash.write(addr - g_romAddr, val); return; }