Initial DSP debugger work

This commit is contained in:
wheremyfoodat 2025-07-08 01:35:53 +03:00
parent f4e6a082bb
commit 415bf7b0a4
9 changed files with 309 additions and 5 deletions

View file

@ -126,6 +126,7 @@ class Emulator {
Memory& getMemory() { return memory; }
Kernel& getKernel() { return kernel; }
Scheduler& getScheduler() { return scheduler; }
Audio::DSPCore* getDSP() { return dsp.get(); }
EmulatorConfig& getConfig() { return config; }
Cheats& getCheats() { return cheats; }