summaryrefslogtreecommitdiff
path: root/kernel/syscalls/port.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/syscalls/port.c')
-rw-r--r--kernel/syscalls/port.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/kernel/syscalls/port.c b/kernel/syscalls/port.c
deleted file mode 100644
index 0a27a5e..0000000
--- a/kernel/syscalls/port.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <syscalls.h>
-
-// FIXME: PERMISSION CHECKS
-void syscall_outw(u16 port, u16 word) {
- outw(port, word);
-}
-
-void syscall_outl(u16 port, u32 l) {
- outl(port, l);
-}
-
-u32 syscall_inl(u16 port) {
- return inl(port);
-}