# HG changeset patch # User nkeynes # Date 1219655804 0 # Node ID 517425d04f1b01f935ff33066d9867661aee753b # Parent b42865f00fb581fcf6b2813e60428fffa2206308 Add default value for the AICA 0x2808 port --- a/src/aica/aica.c Mon Aug 25 09:15:42 2008 +0000 +++ b/src/aica/aica.c Mon Aug 25 09:16:44 2008 +0000 @@ -233,6 +233,8 @@ case AICA_IRQCLEAR: aica_clear_event(); break; + case AICA_FIFOIN: /* Read-only */ + break; default: MMIO_WRITE( AICA2, reg, val ); break; --- a/src/aica/aica.h Mon Aug 25 09:15:42 2008 +0000 +++ b/src/aica/aica.h Mon Aug 25 09:16:44 2008 +0000 @@ -32,7 +32,7 @@ LONG_PORT( 0x040, CDDA_VOL_L, PORT_MRW, 0, "CDDA Volume left" ) LONG_PORT( 0x044, CDDA_VOL_R, PORT_MRW, 0, "CDDA Volume right" ) LONG_PORT( 0x800, VOL_MASTER, PORT_MRW, UNDEFINED, "Master volume" ) -LONG_PORT( 0x808, AICA_UNK7, PORT_MRW, 0, "AICA ??? 7" ) +LONG_PORT( 0x808, AICA_FIFOIN, PORT_MRW, 0x900, "AICA FIFO input" ) LONG_PORT( 0x80C, AICA_CHANSEL, PORT_MRW, 0, "AICA channel select" ) LONG_PORT( 0x810, AICA_CHANSTATE, PORT_MRW, 0, "AICA channel state" ) LONG_PORT( 0x814, AICA_CHANPOSN, PORT_MRW, 0, "AICA channel position" )