mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 20:35:32 -07:00
13 lines
240 B
C
13 lines
240 B
C
typedef struct ics2595_t
|
|
{
|
|
int oldfs3, oldfs2;
|
|
int dat;
|
|
int pos;
|
|
int state;
|
|
|
|
double clocks[16];
|
|
double output_clock;
|
|
} ics2595_t;
|
|
|
|
void ics2595_write(ics2595_t *ics2595, int strobe, int dat);
|