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 e03811e6082f89ee766dc757fc61bcc7011c17ce
parent b8ddc0cbcb319af4223f632ab3773a0a609736b1
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Mon,  8 Jul 2024 22:43:29 +0200

xt test console: log mips to stdout

Diffstat:
Msource/xtTestConsole/xtTestConsole.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/source/xtTestConsole/xtTestConsole.cpp b/source/xtTestConsole/xtTestConsole.cpp @@ -14,6 +14,8 @@ int main() const std::unique_ptr uc(std::make_unique<xt::Xt>()); + uc->getHardware()->getDSP().thread().setLogToStdout(true); + constexpr uint32_t blockSize = 64; std::vector<dsp56k::TWord> stereoOutput; stereoOutput.resize(blockSize<<1);