HLE DSP: Fix format and source type for audio buffers

This commit is contained in:
wheremyfoodat 2024-04-06 19:12:58 +03:00
parent 1c355041fa
commit 1cc3bbf68d
3 changed files with 55 additions and 5 deletions

View file

@ -19,7 +19,10 @@ namespace PhysicalAddrs {
VRAM = 0x18000000,
VRAMEnd = VRAM + 0x005FFFFF,
FCRAM = 0x20000000,
FCRAMEnd = FCRAM + 0x07FFFFFF
FCRAMEnd = FCRAM + 0x07FFFFFF,
DSP_RAM = 0x1FF00000,
DSP_RAM_End = DSP_RAM + 0x0007FFFF
};
}