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 4f8dcca44c56e3b5c5d68c8d2f993a67af56a32b
parent 57c4a5fadc31967cab9435d0b352a142bddebaf1
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Tue, 16 Jul 2024 19:26:04 +0200

larger P memory, smaller XY memory

Diffstat:
Msource/nord/n2x/n2xLib/n2xdsp.cpp | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/source/nord/n2x/n2xLib/n2xdsp.cpp b/source/nord/n2x/n2xLib/n2xdsp.cpp @@ -5,10 +5,10 @@ namespace n2x { - static constexpr dsp56k::TWord g_xyMemSize = 0x40000; - static constexpr dsp56k::TWord g_externalMemAddr = 0x20000; - static constexpr dsp56k::TWord g_pMemSize = 0x2000; // only $0000 < $1400 for DSP, rest for us - static constexpr dsp56k::TWord g_bootCodeBase = 0x1500; + static constexpr dsp56k::TWord g_xyMemSize = 0x20000; + static constexpr dsp56k::TWord g_externalMemAddr = 0x10000; + static constexpr dsp56k::TWord g_pMemSize = 0x8000; + static constexpr dsp56k::TWord g_bootCodeBase = 0x7f00; // DSP56362 bootloader static constexpr uint32_t g_dspBootCode[] =