[DSP] Stubbing events (vol 1)

This commit is contained in:
wheremyfoodat 2023-04-24 23:42:49 +03:00
parent 0eeff3535f
commit 7f32c3860c
4 changed files with 15 additions and 0 deletions

View file

@ -93,4 +93,6 @@ public:
Stereo = 1,
Surround = 2
};
void signalEvents();
};

View file

@ -80,4 +80,6 @@ public:
void requestGPUInterrupt(GPUInterrupt type) { gsp_gpu.requestInterrupt(type); }
void setGSPSharedMem(u8* ptr) { gsp_gpu.setSharedMem(ptr); }
void setHIDSharedMem(u8* ptr) { hid.setSharedMem(ptr); }
void signalDSPEvents() { dsp.signalEvents(); }
};