hi guys,
I asked to alekmaul (the pvsneslib creator) and he said that it goes throug banks automatically.
You just need to set them in the beginning of the code... example:
if your song was converted in two banks, like this:
.bank 5
.section "SOUNDBANK0" ; need dedicated bank(s)
__SOUNDBANK__0:
.incbin "soundbank.bnk" read $8000
.ends
.bank 6
.section "SOUNDBANK1" ; need dedicated bank(s)
__SOUNDBANK__1:
.incbin "soundbank.bnk" skip $8000
.ends
you need to set the banks like this:
spcSetBank(&__SOUNDBANK__1);
spcSetBank(&__SOUNDBANK__0);
more details here:
https://github.com/alekmaul/pvsneslib/i ... -423726329