mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
18 lines
275 B
C
18 lines
275 B
C
/*
|
|
* Interface for the imlac TTYOUT (TTY input).
|
|
*/
|
|
|
|
#ifndef TTYOUT_H
|
|
#define TTYOUT_H
|
|
|
|
|
|
int ttyout_mount(char *fname);
|
|
void ttyout_dismount(void);
|
|
void ttyout_send(BYTE value);
|
|
void ttyout_clear_flag(void);
|
|
bool ttyout_ready(void);
|
|
void ttyout_tick(long cycles);
|
|
|
|
|
|
#endif
|