#pragma once #include 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(); }