PiegOS/kernel/Drivers/memPrint/memPrint.hpp

31 lines
417 B
C++
Raw Normal View History

2015-07-21 10:42:29 +04:00
#ifndef __memPrint__
#define __memPrint__
2015-07-21 12:51:25 +04:00
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
};
typedef enum colorBios colorBios;
2015-07-21 10:42:29 +04:00
// Define class to print text on screen
#endif