-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgen_vdp.h
More file actions
36 lines (29 loc) · 843 Bytes
/
gen_vdp.h
File metadata and controls
36 lines (29 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* gen_vdp.h
*
* genesis custom vdp emulation.
*/
#ifndef GEN_VDP_H
#define GEN_VDP_H
/* $Id: gen_vdp.h,v 1.3 1999/12/04 16:13:03 nyef Exp $ */
typedef struct gen_vdp *gen_vdp;
unsigned short gen_vdp_readport0(gen_vdp vdp);
unsigned short gen_vdp_readport1(gen_vdp vdp);
void gen_vdp_writeport0(gen_vdp vdp, unsigned short data);
void gen_vdp_writeport1(gen_vdp vdp, unsigned short data);
int gen_vdp_periodic(gen_vdp vdp);
gen_vdp gen_vdp_create(void);
#endif /* GEN_VDP_H */
/*
* $Log: gen_vdp.h,v $
* Revision 1.3 1999/12/04 16:13:03 nyef
* moved the vdp data structure out to gen_vdp.c
* published the prototypes for the functions that were behind procpointers
*
* Revision 1.2 1999/09/08 01:04:02 nyef
* changed status register to be 16 bit
*
* Revision 1.1 1999/04/17 22:24:50 nyef
* Initial revision
*
*/