Search
lxdream.org :: lxdream/src/pvr2/tacore.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/pvr2/tacore.c
changeset 931:430048ea8b71
prev801:92b518a2e915
next934:3acd3b3ee6d1
author nkeynes
date Tue Dec 23 05:48:05 2008 +0000 (15 years ago)
branchlxdream-mem
permissions -rw-r--r--
last change More refactoring and general cleanup. Most things should be working again now.
Split off cache and start real implementation, breaking save states in the process
file annotate diff log raw
1.1 --- a/src/pvr2/tacore.c Thu Aug 07 23:32:34 2008 +0000
1.2 +++ b/src/pvr2/tacore.c Tue Dec 23 05:48:05 2008 +0000
1.3 @@ -1200,3 +1200,11 @@
1.4 buf += 32;
1.5 }
1.6 }
1.7 +
1.8 +void FASTCALL pvr2_ta_write_burst( sh4addr_t addr, unsigned char *data )
1.9 +{
1.10 + if( ta_status.debug_output ) {
1.11 + fwrite_dump32( (uint32_t *)data, 32, stderr );
1.12 + }
1.13 + pvr2_ta_process_block( data );
1.14 +}
.