17 lines
270 B
C++
17 lines
270 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace audio
|
|
{
|
|
void select_register(int port, int val);
|
|
int read_register(int port);
|
|
void write_register(int port, int val);
|
|
|
|
void init();
|
|
void reset();
|
|
void update(uint32_t dt);
|
|
|
|
uint8_t get_sample();
|
|
}
|