diff options
Diffstat (limited to 'driver')
| -rw-r--r-- | driver/keyboard.c | 2 | ||||
| -rw-r--r-- | driver/mouse.c | 2 | ||||
| -rw-r--r-- | driver/pci.c | 2 | ||||
| -rw-r--r-- | driver/serial.c | 2 | ||||
| -rw-r--r-- | driver/timer.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/driver/keyboard.c b/driver/keyboard.c index 65a99da..7cc93ec 100644 --- a/driver/keyboard.c +++ b/driver/keyboard.c @@ -2,7 +2,7 @@ // http://www.computer-engineering.org/ps2keyboard/scancodes1.html -#include "asm/x86.h" +#include "asm_x86.h" #include <stdbool.h> diff --git a/driver/mouse.c b/driver/mouse.c index 958cdc4..ab7ec58 100644 --- a/driver/mouse.c +++ b/driver/mouse.c @@ -7,7 +7,7 @@ #include <stdint.h> -#include "asm/x86.h" +#include "asm_x86.h" static volatile uint8_t mouse_cycle; static volatile uint8_t mouse_byte[3]; diff --git a/driver/pci.c b/driver/pci.c index 4ea01d1..e8d8b23 100644 --- a/driver/pci.c +++ b/driver/pci.c @@ -1,7 +1,7 @@ #include "kernel/kernel.h" -#include "asm/x86.h" +#include "asm_x86.h" #include "e1000.h" #define PCI_CONFIG_DATA 0xCFC diff --git a/driver/serial.c b/driver/serial.c index 32479ae..8a5dd2e 100644 --- a/driver/serial.c +++ b/driver/serial.c @@ -1,6 +1,6 @@ #include "driver/serial.h" -#include "asm/x86.h" // provides x86_inb() and x86_outb() +#include "asm_x86.h" // provides x86_inb() and x86_outb() /** COM1 Port */ static const PORT=0x3f8; diff --git a/driver/timer.c b/driver/timer.c index 88c9931..3a8c31c 100644 --- a/driver/timer.c +++ b/driver/timer.c @@ -1,7 +1,7 @@ #include "timer.h" -#include "asm/x86.h" +#include "asm_x86.h" static volatile uint64_t task_system_clock_start=0; |
