Externalize memPrint
This commit is contained in:
parent
bf7548410f
commit
8f248101c0
3 changed files with 49 additions and 26 deletions
10
kernel/Helpers/memPrint.cpp
Normal file
10
kernel/Helpers/memPrint.cpp
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#include "./memPrint.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
memPrint::memPrint(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
memPrint::~memPrint(){
|
||||||
|
|
||||||
|
}
|
39
kernel/Helpers/memPrint.hpp
Normal file
39
kernel/Helpers/memPrint.hpp
Normal file
|
@ -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
|
|
@ -3,32 +3,6 @@
|
||||||
|
|
||||||
#include "./types.hpp"
|
#include "./types.hpp"
|
||||||
|
|
||||||
//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;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int memcpy(u32 source, u32 dest, u32 size);
|
int memcpy(u32 source, u32 dest, u32 size);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue