summaryrefslogtreecommitdiff
path: root/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'io.h')
-rw-r--r--io.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/io.h b/io.h
deleted file mode 100644
index c58c271..0000000
--- a/io.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef IO_H
-#define IO_H
-
-#include "cia.h"
-
-static inline unsigned long
-inb(unsigned long port)
-{
- return *(volatile unsigned char *)(CIA_BW_IO + port);
-}
-
-static inline void
-outb(unsigned char val, unsigned long port)
-{
- *(volatile unsigned char *)(CIA_BW_IO + port) = val;
-}
-
-#endif