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-15 19:45:29 +07:00

17 lines
268 B
C

/*
* Interface for the imlac 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);
int ptp_punch(BYTE value);
bool ptp_ready(void);
void ptp_tick(long cycles);
#endif