per-line scrolling test
[mdlife] / src / pad.h
1 #ifndef PAD_H_
2 #define PAD_H_
3
4 #define PAD_UP          0x0001
5 #define PAD_DOWN        0x0002
6 #define PAD_LEFT        0x0004
7 #define PAD_RIGHT       0x0008
8 #define PAD_B           0x0010
9 #define PAD_C           0x0020
10 #define PAD_A           0x0040
11 #define PAD_START       0x0080
12
13 extern unsigned short bnstate, bndiff;
14
15 void pad_init(void);
16 unsigned short pad_read(int port);
17
18 #endif  /* PAD_H_ */