Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Slightly less terrible PS2 driver
Browse files Browse the repository at this point in the history
  • Loading branch information
klange committed May 26, 2021
1 parent cd98680 commit 1f5581c
Show file tree
Hide file tree
Showing 6 changed files with 373 additions and 297 deletions.
13 changes: 0 additions & 13 deletions base/usr/include/kernel/arch/x86_64/idt.h

This file was deleted.

7 changes: 2 additions & 5 deletions kernel/arch/x86_64/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#include <kernel/args.h>

#include <kernel/arch/x86_64/ports.h>
#include <kernel/arch/x86_64/idt.h>
#include <kernel/arch/x86_64/cmos.h>
#include <kernel/arch/x86_64/pml.h>

Expand All @@ -37,8 +36,7 @@ extern void idt_install(void);
extern void pit_initialize(void);
extern void acpi_initialize(void);
extern void portio_initialize(void);
extern void keyboard_install(void);
extern void mouse_install(void);
extern void ps2hid_install(void);
extern void serial_initialize(void);
extern void fbterm_initialize(void);

Expand Down Expand Up @@ -295,8 +293,7 @@ int kmain(struct multiboot * mboot, uint32_t mboot_mag, void* esp) {
pit_initialize();

/* Install generic PC device drivers. */
keyboard_install();
mouse_install();
ps2hid_install();
serial_initialize();
portio_initialize();

Expand Down
Loading

0 comments on commit 1f5581c

Please sign in to comment.