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 4ef0fe2b1bb71444d5aab53002f41066a8adef49
parent ba1bf501fdf63fba424566a12c85619130bde8c9
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 21 Jul 2024 23:41:06 +0200

fix PC in logging

Diffstat:
Msource/nord/n2x/n2xLib/n2xdsp.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/nord/n2x/n2xLib/n2xdsp.cpp b/source/nord/n2x/n2xLib/n2xdsp.cpp @@ -163,7 +163,7 @@ namespace n2x void DSP::hdiTransferUCtoDSP(const uint32_t _word) { -// LOG('[' << m_name << "] toDSP writeRX=" << HEX(_word) << ", ucPC=" << HEX(m_hardware.getUC().getPC())); +// LOG('[' << m_name << "] toDSP writeRX=" << HEX(_word) << ", ucPC=" << HEX(m_hardware.getUC().getPrevPC())); hdi08().writeRX(&_word, 1); m_hdiUC.isr(m_hdiUC.isr() & ~(mc68k::Hdi08::IsrBits::Txde | mc68k::Hdi08::IsrBits::Trdy)); }