diff options
Diffstat (limited to 'kernel/Helpers/memPrint.hpp')
| -rw-r--r-- | kernel/Helpers/memPrint.hpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/kernel/Helpers/memPrint.hpp b/kernel/Helpers/memPrint.hpp new file mode 100644 index 0000000..7b67778 --- /dev/null +++ b/kernel/Helpers/memPrint.hpp @@ -0,0 +1,39 @@ +#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; + +class memPrint{ + + private: + + + public: + memPrint(); + ~memPrint(); +}; + +#endif |
