mirror of
https://github.com/jscrane/r65emu.git
synced 2025-04-11 19:37:01 +00:00
11 lines
175 B
C++
11 lines
175 B
C++
#ifndef __SOUND_H__
|
|
#define __SOUND_H__
|
|
|
|
class Sound {
|
|
public:
|
|
void begin(unsigned pin, unsigned freq);
|
|
const uint8_t *play(const uint8_t *bytes, unsigned size);
|
|
};
|
|
|
|
#endif
|