Re-organisation of video emulation.

This commit is contained in:
TomW 2013-06-24 20:42:35 +01:00
commit 58085bcc87
86 changed files with 8087 additions and 7229 deletions

View file

@ -1,2 +1,12 @@
void ics2595_write(int strobe, int dat);
extern double ics2595_output_clock;
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);