Working PS/2 keyboard driver
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m19s

This commit is contained in:
2026-02-15 14:28:07 +01:00
parent b0b69f3e9e
commit 927d9e4c73
29 changed files with 374 additions and 29 deletions

10
kernel/device/ps2_kb.h Normal file
View File

@@ -0,0 +1,10 @@
#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