2016-08-14 22:07:17 -04:00
|
|
|
/* Copyright holders: Sarah Walker
|
|
|
|
|
see COPYING for more details
|
|
|
|
|
*/
|
2016-06-26 00:34:39 +02:00
|
|
|
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);
|