mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
dsp lle: coef is really 0x800 words
dspspy: fill the whole iram! crazy thing, normally likes len%4=0, however to fill the whole iram you use 8191 instead of 8192... :s git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4011 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -21,7 +21,8 @@ void IDSP::SendTask(void *addr, u16 iram_addr, u16 len, u16 start)
|
||||
{
|
||||
// addr main ram addr 4byte aligned (1 Gekko word)
|
||||
// iram_addr dsp addr 4byte aligned (2 DSP words)
|
||||
// len block length in bytes multiple of 4
|
||||
// len block length in bytes multiple of 4 (wtf? if you want to fill whole iram, you need 8191)
|
||||
// (8191 % 4 = 3) wtffff
|
||||
// start dsp iram entry point
|
||||
while (CheckMailTo());
|
||||
SendMailTo(0x80F3A001);
|
||||
|
Reference in New Issue
Block a user