Files
z80/zx_tape.h

16 lines
297 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();
void report();
}