This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
213 B
C
Raw Normal View History

#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