- [NEW] mòdul 'zx_speaker' per a unificar la eixida de só

This commit is contained in:
2025-07-24 19:39:57 +02:00
parent 780afbc6a8
commit 91a8933544
6 changed files with 83 additions and 55 deletions

11
zx_speaker.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#include <stdint.h>
namespace speaker
{
void init();
void enable();
void disable();
void register_source(uint8_t(*callback)());
void update(const uint8_t dt);
}