12 lines
195 B
C
12 lines
195 B
C
#ifndef SB16_H
|
|
#define SB16_H
|
|
|
|
extern int sb16_irq;
|
|
|
|
bool sb16_is_full();
|
|
void sb16_ack();
|
|
size_t sb16_write(uint8_t* input_buffer, size_t size);
|
|
bool sb16_is_playing();
|
|
void sb16_init();
|
|
|
|
#endif |