debug screen

This commit is contained in:
2025-02-15 12:52:04 -07:00
parent 821782e60e
commit 97de875bf2
3 changed files with 128 additions and 53 deletions

View File

@ -99,22 +99,22 @@ typedef struct {
u8 wave_ram[16];
float sq1_history[4410];
float sq1_history[384];
u32 sq1_index;
float sq2_history[4410];
float sq2_history[384];
u32 sq2_index;
float ch3_history[4410];
float ch3_history[384];
u32 ch3_index;
float ch4_history[4410];
float ch4_history[384];
u32 ch4_index;
float left_history[4410];
float left_history[384];
u32 left_index;
float right_history[4410];
float right_history[384];
u32 right_index;
} audio_context;