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 b89493f51caf3a49794f71c95cacb80f7c1921cd
parent 6bae87bdc4f69ace1c677e8d39ed5ce68c894b20
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 25 Jul 2024 18:45:25 +0200

reduce DSP memory size

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 @@ -7,10 +7,10 @@ namespace n2x { - 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; + static constexpr dsp56k::TWord g_xyMemSize = 0x010000; + static constexpr dsp56k::TWord g_externalMemAddr = 0x008000; + static constexpr dsp56k::TWord g_pMemSize = 0x004000; + static constexpr dsp56k::TWord g_bootCodeBase = 0x003f00; // DSP56362 bootloader static constexpr uint32_t g_dspBootCode[] =