Mercurial > audlegacy-plugins
view src/console/sap_cpu_io.h @ 3096:3355beb9105b
Add probe priority of 2, this should go before low-level audio driver such as ALSA. Closes bug #35 by Petr Psa.
author | Tony Vroon <chainsaw@gentoo.org> |
---|---|
date | Thu, 30 Apr 2009 14:29:20 +0100 |
parents | 986f098da058 |
children |
line wrap: on
line source
#include "Sap_Emu.h" #include "blargg_source.h" #define CPU_WRITE( cpu, addr, data, time ) STATIC_CAST(Sap_Emu&,*cpu).cpu_write( addr, data ) void Sap_Emu::cpu_write( sap_addr_t addr, int data ) { mem.ram [addr] = data; if ( (addr >> 8) == 0xD2 ) cpu_write_( addr, data ); } #ifdef NDEBUG #define CPU_READ( cpu, addr, time ) READ_LOW( addr ) #else #define CPU_READ( cpu, addr, time ) STATIC_CAST(Sap_Emu&,*cpu).cpu_read( addr ) int Sap_Emu::cpu_read( sap_addr_t addr ) { if ( (addr & 0xF900) == 0xD000 ) dprintf( "Unmapped read $%04X\n", addr ); return mem.ram [addr]; } #endif