something works
authornotaz <notasas@gmail.com>
Sun, 2 Feb 2025 23:15:44 +0000 (01:15 +0200)
committernotaz <notasas@gmail.com>
Wed, 19 Feb 2025 20:04:16 +0000 (22:04 +0200)
commit4ca5d9583c0b40ffacba61c1c9134aa7a6bbdafc
tree6adec903d70392e19bf54492d6890f4d7628d5d0
parent40a37ac339aa873535190cabeb8dd814731c5bba
something works

also need to reduce libpicofe delay:
diff --git a/sndout_sdl.c b/sndout_sdl.c
index c0c57ab..ec99abe 100644
--- a/sndout_sdl.c
+++ b/sndout_sdl.c
@@ -14,7 +14,7 @@

 // ~1/3s at 44kHz
 // set this to power of 2
-#define BUF_LEN 32768
+#define BUF_LEN (4*1024) //32768
 #define BUF_MASK (BUF_LEN - 1)

 static short buf[BUF_LEN];
Makefile
pico/sound/sound.c
pico/sound/ym2612.c