1 /*
2  * apple2_vdp.h
3  *
4  * emulation of the Apple ][ video display
5  */
6 
7 /* $Id: apple2_vdp.h,v 1.1 2000/01/01 04:12:27 nyef Exp $ */
8 
9 #ifndef APPLE2_VDP_H
10 #define APPLE2_VDP_H
11 
12 #include "types.h"
13 
14 typedef struct apple2_vdp *apple2_vdp;
15 
16 void a2v_io(apple2_vdp vdp, int addr);
17 
18 void a2v_periodic(apple2_vdp vdp);
19 
20 apple2_vdp a2v_init(u8 *system_memory);
21 
22 #endif /* APPLE2_VDP_H */
23 
24 /*
25  * $Log: apple2_vdp.h,v $
26  * Revision 1.1  2000/01/01 04:12:27  nyef
27  * Initial revision
28  *
29  */
30