working on audio buffer stuff

This commit is contained in:
2025-02-17 21:59:17 -07:00
parent 020feb2a6f
commit 5668389488
3 changed files with 44 additions and 10 deletions

View File

@ -117,6 +117,11 @@ typedef struct {
float right_history[384];
u32 right_index;
u8 sq1_sample_val;
u32 sq1_write_index;
u32 sq1_read_index;
u8 sq1_audio_buffer[4096];
} audio_context;
void audio_init();