omos-tcnj2024/sys/include/kbd.h

10 lines
95 B
C
Raw Permalink Normal View History

2024-02-18 17:50:47 +01:00
#ifndef KBD_H
#define KBD_H
2024-02-18 17:59:03 +01:00
#include <types.h>
static u8 inb(u16);
u8 waitkey(void);
2024-02-18 17:50:47 +01:00
#endif