2 * $Id: aica.c,v 1.3 2005-12-13 12:17:26 nkeynes Exp $
4 * This is the core sound system (ie the bit which does the actual work)
6 * Copyright (c) 2005 Nathan Keynes.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
26 MMIO_REGION_READ_DEFFN( AICA0 )
27 MMIO_REGION_READ_DEFFN( AICA1 )
28 MMIO_REGION_READ_DEFFN( AICA2 )
30 struct dreamcast_module aica_module = { "AICA", aica_init, aica_reset, NULL, NULL,
34 * Initialize the AICA subsystem. Note requires that
36 void aica_init( void )
38 register_io_regions( mmio_list_spu );
44 void aica_reset( void )
49 /** Channel register structure:
52 * 08 4 Loop start address
53 * 0C 4 Loop end address
54 * 10 4 Volume envelope
56 * 18 4 Frequency (floating point
69 /* Write to channels 0-31 */
70 void mmio_region_AICA0_write( uint32_t reg, uint32_t val )
72 // aica_write_channel( reg >> 7, reg % 128, val );
76 /* Write to channels 32-64 */
77 void mmio_region_AICA1_write( uint32_t reg, uint32_t val )
79 // aica_write_channel( (reg >> 7) + 32, reg % 128, val );
83 /* General registers */
84 void mmio_region_AICA2_write( uint32_t reg, uint32_t val )
.