aboutsummaryrefslogtreecommitdiff
path: root/devices/uart.h
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-12-10 20:56:57 +0200
committeraqua <aqua@iserlohn-fortress.net>2022-12-11 11:32:51 +0200
commit9b2a78fa52249ab481493550490aa5f37872dcf6 (patch)
tree127031268b9b42b0fbdae3d87684d9c045983677 /devices/uart.h
parentRename CCFLAGS to CFLAGS (diff)
downloadkernel-9b2a78fa52249ab481493550490aa5f37872dcf6.tar.xz
Rewrite drivers/uart and drivers/vga in cpp
Diffstat (limited to 'devices/uart.h')
-rw-r--r--devices/uart.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/devices/uart.h b/devices/uart.h
deleted file mode 100644
index ee74e98..0000000
--- a/devices/uart.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-// TODO #include <arch/platform.h>
-#include <stdio.h>
-
-enum UART {
- COM1 = 0x3f8,
- COM2 = 0x2f8,
- COM3 = 0x3E8,
- COM4 = 0x2E8,
- COM5 = 0x5F8,
- COM6 = 0x4F8,
- COM7 = 0x5E8,
- COM8 = 0x4E8,
-};
-
-FILE *uart_init(enum UART port);