summaryrefslogtreecommitdiff
path: root/kernel/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/printf.c')
-rw-r--r--kernel/printf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/printf.c b/kernel/printf.c
index 4b3a632..0b51f8d 100644
--- a/kernel/printf.c
+++ b/kernel/printf.c
@@ -1,7 +1,6 @@
#include "printf.h"
#include "types.h"
-
-#define outb(port, value) asm volatile("out %b0,%w1" : : "a" (value), "d" (port));
+#include "portio.h"
void putchar(char c) {
if(c == '\n') {