diff options
author | Anton Kling <anton@kling.gg> | 2024-11-30 17:46:10 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-11-30 17:46:10 +0100 |
commit | f43624cf031cd387095ea12fd5714e49a087c555 (patch) | |
tree | 8347bd41d731d2bbe26f8562278e46af0a261bd8 /kernel/drivers/ac97.h | |
parent | 5dd05779ce0a6544f4653eee87d278973386d0ab (diff) |
ac97/audio: Add audio
Incomplete but still very cool
Diffstat (limited to 'kernel/drivers/ac97.h')
-rw-r--r-- | kernel/drivers/ac97.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/drivers/ac97.h b/kernel/drivers/ac97.h index 02be9a0..d7bacb6 100644 --- a/kernel/drivers/ac97.h +++ b/kernel/drivers/ac97.h @@ -1 +1,6 @@ +#include <typedefs.h> +#include <stddef.h> + void ac97_init(void); +int ac97_add_pcm(u8* buffer, size_t len); +int ac97_can_write(void); |