16 lines
310 B
C
16 lines
310 B
C
/* Copyright holders: Sarah Walker
|
|
see COPYING for more details
|
|
*/
|
|
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);
|