aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/input/ps2/keyboard.c
diff options
context:
space:
mode:
authorMarvin Borner2019-11-24 23:34:32 +0100
committerMarvin Borner2019-11-24 23:34:32 +0100
commitbb57b124d1bb385d41747f50be7dd4f3625539c1 (patch)
treefe461afad63df40571784565e8d435cba8c8e59c /src/kernel/input/ps2/keyboard.c
parentf9c50b9ff23e9a3e8db5826fef7a6e7ebb8af21d (diff)
Major coding style reformatting -> Kernighan & Ritchie
This project now (hopefully) uses the same style recommended by Kernighan and Ritchie and used in the Linux Kernel
Diffstat (limited to 'src/kernel/input/ps2/keyboard.c')
-rw-r--r--src/kernel/input/ps2/keyboard.c20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/kernel/input/ps2/keyboard.c b/src/kernel/input/ps2/keyboard.c
index 2a093e5..24802bd 100644
--- a/src/kernel/input/ps2/keyboard.c
+++ b/src/kernel/input/ps2/keyboard.c
@@ -64,12 +64,13 @@ char shift_keymap[128] = {
0, // Other keys
};
-void keyboard_handler(struct regs *r) {
+void keyboard_handler(struct regs *r)
+{
unsigned char scan_code;
char *current_keymap = keymap;
if (shift_pressed) current_keymap = shift_keymap;
- scan_code = receive_b(0x60);
+ scan_code = inb(0x60);
if ((scan_code & 0x80) == 0) { // PRESS
// TODO: Fix caps lock deactivation when pressing shift while shifted
@@ -87,18 +88,21 @@ void keyboard_handler(struct regs *r) {
}
}
-void keyboard_acknowledge() {
- while (receive_b(0x60) != 0xfa);
+void keyboard_acknowledge()
+{
+ while (inb(0x60) != 0xfa);
}
-void keyboard_rate() {
- send_b(0x60, 0xF3);
+void keyboard_rate()
+{
+ outb(0x60, 0xF3);
keyboard_acknowledge();
- send_b(0x60, 0x0); // Rate{00000} Delay{00} 0
+ outb(0x60, 0x0); // Rate{00000} Delay{00} 0
}
// Installs the keyboard handler into IRQ1
-void keyboard_install() {
+void keyboard_install()
+{
keyboard_rate();
irq_install_handler(1, keyboard_handler);
shift_pressed = 0;