summaryrefslogtreecommitdiffstats
path: root/arch/x86_64/uart.h
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-05-22 13:00:41 -0400
committerJon Santmyer <jon@jonsantmyer.com>2024-05-22 13:00:41 -0400
commitace65b453151845bc361f21f3e5b651c35f9f126 (patch)
tree262ebd29b0ca1d8584f0b6f1efa7a00d9f4f3e43 /arch/x86_64/uart.h
parentf004c1ade8d617a82cea2fe249434cccb47a2358 (diff)
downloadjove-kernel-master.tar.gz
jove-kernel-master.tar.bz2
jove-kernel-master.zip
massive refactor for mp and organizationHEADmaster
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