summaryrefslogtreecommitdiff
path: root/apps/codecs/libgme/nes_vrc6_apu.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libgme/nes_vrc6_apu.h')
-rw-r--r--apps/codecs/libgme/nes_vrc6_apu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libgme/nes_vrc6_apu.h b/apps/codecs/libgme/nes_vrc6_apu.h
index 39ed006100..8f3cbf4629 100644
--- a/apps/codecs/libgme/nes_vrc6_apu.h
+++ b/apps/codecs/libgme/nes_vrc6_apu.h
@@ -39,12 +39,12 @@ struct Nes_Vrc6_Apu {
39void Vrc6_init( struct Nes_Vrc6_Apu* this ); 39void Vrc6_init( struct Nes_Vrc6_Apu* this );
40void Vrc6_reset( struct Nes_Vrc6_Apu* this ); 40void Vrc6_reset( struct Nes_Vrc6_Apu* this );
41void Vrc6_output( struct Nes_Vrc6_Apu* this, struct Blip_Buffer* ); 41void Vrc6_output( struct Nes_Vrc6_Apu* this, struct Blip_Buffer* );
42void Vrc6_end_frame( struct Nes_Vrc6_Apu* this, blip_time_t ) ICODE_ATTR; 42void Vrc6_end_frame( struct Nes_Vrc6_Apu* this, blip_time_t );
43 43
44// Oscillator 0 write-only registers are at $9000-$9002 44// Oscillator 0 write-only registers are at $9000-$9002
45// Oscillator 1 write-only registers are at $A000-$A002 45// Oscillator 1 write-only registers are at $A000-$A002
46// Oscillator 2 write-only registers are at $B000-$B002 46// Oscillator 2 write-only registers are at $B000-$B002
47void Vrc6_write_osc( struct Nes_Vrc6_Apu* this, blip_time_t, int osc, int reg, int data ) ICODE_ATTR; 47void Vrc6_write_osc( struct Nes_Vrc6_Apu* this, blip_time_t, int osc, int reg, int data );
48 48
49static inline void Vrc6_osc_output( struct Nes_Vrc6_Apu* this, int i, struct Blip_Buffer* buf ) 49static inline void Vrc6_osc_output( struct Nes_Vrc6_Apu* this, int i, struct Blip_Buffer* buf )
50{ 50{