summaryrefslogtreecommitdiffstats
path: root/arch/x86_64/uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/uart.h')
-rw-r--r--arch/x86_64/uart.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/arch/x86_64/uart.h b/arch/x86_64/uart.h
deleted file mode 100644
index 8386eb7..0000000
--- a/arch/x86_64/uart.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef JOVE_KERNEL_ARCH_x86_64_UART_H
-#define JOVE_KERNEL_ARCH_x86_64_UART_H 1
-
-#include "lib/jove.h"
-#include <stdint.h>
-
-ALWAYS_INLINE uint8_t pinb(uint16_t port)
-{
- uint8_t v;
- __asm__ volatile("inb %1, %0": "=a"(v): "Nd"(port));
- return v;
-}
-
-ALWAYS_INLINE void poutb(uint16_t port, uint8_t b)
-{
- __asm__ volatile("outb %0, %1":: "a"(b), "Nd"(port));
-}
-
-#endif