summaryrefslogtreecommitdiff
path: root/src/stem/core/sys.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stem/core/sys.h')
-rw-r--r--src/stem/core/sys.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/stem/core/sys.h b/src/stem/core/sys.h
deleted file mode 100644
index 76e3560..0000000
--- a/src/stem/core/sys.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef DEF_SYS_H
-#define DEF_SYS_H
-
-#include "types.h"
-
-void outb(uint16_t port, uint8_t value);
-void outw(uint16_t port, uint16_t value);
-uint8_t inb(uint16_t port);
-uint16_t inw(uint16_t port);
-
-#define PANIC(s) panic(s, __FILE__, __LINE__);
-void panic(char* message, char* file, int line);
-
-void sti(); //GLOBAL SYSTEM MUTEX
-void cli();
-
-#endif