15 lines
278 B
C++
15 lines
278 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
|
|
namespace zx_tape
|
|
{
|
|
void load(const char* filename);
|
|
void play();
|
|
void stop();
|
|
void rewind();
|
|
void update(const uint8_t dt);
|
|
void setberserk(const bool value);
|
|
const bool getberserk();
|
|
const bool getplaying();
|
|
}
|