This is an addition to the main text of the manual.
/* Enable SCU-DMA0 end interrupt */ INT_ChgMsk(INT_MSK_DMA0, INT_MSK_NULL);
Configure directly on the hardware (SCSP).
/* SCSP settings */ *((Uint16 *)0x25b00216) = 0x00ff; *((Uint16 *)0x25b00236) = 0x00ef; *((Uint16 *)0x25b00400) = 0x000f;
Set using the sound I/F library.
/* Setting by SND I/F function */ /* Note: In practice, set an upper limit on the number of loops */ while (SND_SetCdDaLev(6, 6) == SND_RET_NSET); while (SND_SetCdDaPan(-15, 15) == SND_RET_NSET); while (SND_SetTlVl(15) == SND_RET_NSET);