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 c5f9d4028924d751ce82db33210966ca667f5043
parent d5844a0becee0255ac147bd4119115a0db1a0b22
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 21 Jul 2024 03:11:29 +0200

wait for empty dsp rx data after sending irq

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 @@ -213,7 +213,7 @@ namespace n2x m_hardware.ucYieldLoop([&] { - return dsp().hasPendingInterrupts(); + return dsp().hasPendingInterrupts() || hdi08().hasRXData(); }); hdiTransferDSPtoUC();