Files
z80/zx_tape.h
Raimon Zamora 486bd648d3 - Sistema de menus operatiu, falta ficar-los tots
- Afegit .tap del Fernando Martín. Investigar perqué falla.
2024-12-03 22:09:52 +01:00

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();
}