PS2SDK
PS2 Homebrew Libraries
audsrv_internal.h
Go to the documentation of this file.
1 /*
2 # _____ ___ ____ ___ ____
3 # ____| | ____| | | |____|
4 # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5 #-----------------------------------------------------------------------
6 # Copyright 2005, ps2dev - http://www.ps2dev.org
7 # Licenced under GNU Library General Public License version 2
8 */
9 
15 #ifndef __AUDSRV_C_H__
16 #define __AUDSRV_C_H__
17 
19 #define MIN(a,b) ((a) <= (b)) ? (a) : (b)
20 
21 //RPC service ID
22 #define AUDSRV_IRX 0x870884e
23 
24 //DMA channel allocation
25 #define AUDSRV_VOICE_DMA_CH 0
26 #define AUDSRV_BLOCK_DMA_CH 1
27 
28 #endif