14 lines
230 B
C++
14 lines
230 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 go_berserk();
|
|
const bool berserk();
|
|
}
|