You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
213 B
C
16 lines
213 B
C
11 years ago
|
#ifndef PS2_IO_H
|
||
|
#define PS2_IO_H
|
||
|
|
||
|
|
||
|
void clock_init(void);
|
||
|
void clock_lo(void);
|
||
|
void clock_hi(void);
|
||
|
bool clock_in(void);
|
||
|
|
||
|
void data_init(void);
|
||
|
void data_lo(void);
|
||
|
void data_hi(void);
|
||
|
bool data_in(void);
|
||
|
|
||
|
#endif
|