summaryrefslogtreecommitdiff
path: root/kernel/Drivers/memPrint/memPrint.hpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-07-22 11:22:02 +0400
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-07-22 11:22:02 +0400
commitbf7548410f2f34007ddfe084ce7f34f4c6017fcc (patch)
tree06da33821e06a3977c9dfa873e10bbc193081ece /kernel/Drivers/memPrint/memPrint.hpp
parentbf534139e35b78535d4c9d8522376a1df5db84b4 (diff)
Move memPrint to helpers
Diffstat (limited to 'kernel/Drivers/memPrint/memPrint.hpp')
-rw-r--r--kernel/Drivers/memPrint/memPrint.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/kernel/Drivers/memPrint/memPrint.hpp b/kernel/Drivers/memPrint/memPrint.hpp
deleted file mode 100644
index 71d934b..0000000
--- a/kernel/Drivers/memPrint/memPrint.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef __memPrint__
-#define __memPrint__
-
-//Define the bios color
-enum colorBios{
-
- BLACK=0x0,
- BLUE=0x1,
- GREEN=0x2,
- CYAN=0x3,
- RED=0x4,
- MAGENTA=0x5,
- BROWN=0x6,
- LIGHTGRAY=0x7,
- DARKGRAY=0x8,
- LIGHTBLUE=0x9,
- LIGHTGREEN=0xA,
- LIGHTCYAN=0xB,
- LIGHTRED=0xC,
- LIGHTMAGENTA=0xD,
- YELLOW=0xE,
- WHITE=0xF
-
-};
-
-//Type def for biosColor
-typedef enum colorBios colorBios;
-
-
-// Define class to print text on screen
-
-#endif