Files
mop3/kernel/device/ps2_kb.h
kamkow1 927d9e4c73
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m19s
Working PS/2 keyboard driver
2026-02-15 14:28:07 +01:00

11 lines
257 B
C

#ifndef _KERNEL_DEVICE_PS2_KB_H
#define _KERNEL_DEVICE_PS2_KB_H
#include <proc/proc.h>
int ps2kb_read_key (struct proc* proc, void* a1, void* a2, void* a3, void* a4);
bool ps2kb_init (void* arg);
void ps2kb_fini (void);
#endif // _KERNEL_DEVICE_PS2_KB_H