]> git.sur5r.net Git - cc65/blob - include/_pbi.h
Changed decl order
[cc65] / include / _pbi.h
1 /*
2  * _pbi.h
3  *
4  * Freddy Offenga, 4/25/2000
5  *
6  * Internal include file, do not use directly.
7  * Atari parallel bus definitions
8  *
9  */
10
11
12 #ifndef __PBI_H
13 #define __PBI_H
14
15 /* parallel bus interface area */
16 #define PBI             ((unsigned char*)0xD100)
17
18 /* parallel device IRQ status */
19 #define PDVI            ((unsigned char*)0xD1FF)
20
21 /* parallel device select */
22 #define PDVS            ((unsigned char*)0xD1FF)
23
24 /* parallel bus interface RAM area */
25 #define PBIRAM          ((unsigned char*)0xD600)
26
27 /* parallel device ID 1 */
28 #define PDID1           ((unsigned char*)0xD803)
29
30 /* parallel device I/O vector */
31 #define PDIDV           ((unsigned char*)0xD805)
32
33 /* parallel device IRQ vector */
34 #define PDIRQV          ((unsigned char*)0xD808)
35
36 /* parallel device ID 2 */
37 #define PDID2           ((unsigned char*)0xD80B)
38
39 /* parallel device vector table */
40 #define PDVV            ((unsigned char*)0xD80D)
41
42 /* End of _pbi.h */
43 #endif
44