1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
Files
rzzzwilson.pymlac/vimlac/ptp.h
2015-10-16 10:25:47 +07:00

17 lines
269 B
C
Executable File

/*
* Interface for the vimlac PTP (papertape punch).
*/
#ifndef PTP_H
#define PTP_H
int ptp_mount(char *fname);
void ptp_dismount(void);
void ptp_start(void);
void ptp_stop(void);
void ptp_punch(BYTE byte);
void ptp_tick(long cycles);
bool ptp_ready(void);
#endif