summaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-03 15:18:16 +0200
committerMiguel <m.i@gmx.at>2018-09-03 15:18:16 +0200
commit7eb87bf3f3fa6226657a7106eb255cbfa97758d2 (patch)
tree2d7d2280d32180d18796999bf7687ebe5bf208df /driver
parent76b3da6022310dd8edbbbfdf4f73f1696a559853 (diff)
big renaming
Diffstat (limited to 'driver')
-rw-r--r--driver/keyboard.c2
-rw-r--r--driver/mouse.c2
-rw-r--r--driver/pci.c2
-rw-r--r--driver/serial.c2
-rw-r--r--driver/timer.c2
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;