ps2 init complete, can receive keyboard presses

This commit is contained in:
2026-06-13 19:53:57 -04:00
parent 3ecbcdf369
commit 2ab98fe582
11 changed files with 240 additions and 21 deletions

View File

@@ -8,4 +8,8 @@ void kprint(const char *str) {
kout->putchar(*str);
str++;
}
}
void kputc(const char c) {
kout->putchar(c);
}