Add colorBios
This commit is contained in:
parent
c6bdd600d7
commit
dd1226fb1f
1 changed files with 23 additions and 0 deletions
|
@ -2,6 +2,29 @@
|
|||
#define __memPrint__
|
||||
|
||||
|
||||
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;
|
||||
|
||||
// Define class to print text on screen
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue