summaryrefslogtreecommitdiff
path: root/kernel/Drivers/memPrint
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/Drivers/memPrint')
-rw-r--r--kernel/Drivers/memPrint/memPrint.cpp7
-rw-r--r--kernel/Drivers/memPrint/memPrint.hpp32
2 files changed, 0 insertions, 39 deletions
diff --git a/kernel/Drivers/memPrint/memPrint.cpp b/kernel/Drivers/memPrint/memPrint.cpp
deleted file mode 100644
index cd93994..0000000
--- a/kernel/Drivers/memPrint/memPrint.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-#include "./memPrint.hpp"
-
-
-
-
-
-//Implement memPrint class to print text on screen
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