XL2
Established Member
Has anyone ever managed to get SCSP DSP effects working?
The DSP linker as several DSP programs ready to be used, so it's easy to generate a SCSP DSP binary file (.EXB)
I tried using SBL, with a proper map (DSP program + DSP work ram), but the program doesn't even show up in Yabause SCSP DSP debugger.
Then it's supposed to work using :
And I call the sound effects this way :
The audio works fine, but I can't seem to get the DSP program to even start.
Any idea?
And how can you even link the DSP effects with redbook audio?
I've seen no examples at all, I just know it's supposed to be possible.
The DSP linker as several DSP programs ready to be used, so it's easy to generate a SCSP DSP binary file (.EXB)
I tried using SBL, with a proper map (DSP program + DSP work ram), but the program doesn't even show up in Yabause SCSP DSP debugger.
Code:
fid = ztCDopen((Sint8*)"DSP.EXB");
ztCDload(fid, 0, (Uint32 *)LWRAM, dspSize);
SND_MoveData((Uint16*)LWRAM, (Uint32)dspSize, SND_KD_DSP_PRG, 0);
Then it's supposed to work using :
Code:
SND_ChgEfct(1);
And I call the sound effects this way :
Code:
SND_CtrlDirMidi(0x00, 0x00, MidiNoteOff, Channel1, SFX, 127); //Stop the note (clears the channel)
SND_CtrlDirMidi(0x00, 0x00, MidiNoteOn, Channel1, SFX, 127); //Plays the note (it will stop playing once it's done, but won't clear the channel)
The audio works fine, but I can't seem to get the DSP program to even start.
Any idea?
And how can you even link the DSP effects with redbook audio?
I've seen no examples at all, I just know it's supposed to be possible.