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

@ -7,6 +7,10 @@
#include "services/dsp.hpp"
#undef Assert
#undef UNREACHABLE
#include "teakra/impl/register.h"
using namespace Audio;
struct Dsp1 {
@ -343,3 +347,5 @@ void TeakraDSP::unloadComponent() {
teakra.RecvData(2);
running = false;
}
u32 TeakraDSP::getPC() { return teakra.GetRegisterState().pc; }