Code wash !

This commit is contained in:
manzerbredes 2015-07-22 13:22:53 +04:00
parent 8f248101c0
commit c10137539f
9 changed files with 45 additions and 8 deletions

View file

@ -4,11 +4,24 @@ EXEC=helpers.o
all:$(EXEC)
#----- Helpers -----
$(EXEC): memory.cpp
$(CXX) -c -o $(EXEC) memory.cpp
$(EXEC): memory.o memPrint.o
ld -m elf_i386 -r -o $(EXEC) $^
#---------------
#----- Memory -----
memory.o: memory.cpp memory.hpp
$(CXX) -c -o $@ $<
#------------------
#----- memPrint -----
memPrint.o: memPrint.cpp memPrint.hpp
$(CXX) -c -o $@ $<
#-------------------
#----- Other -----
.PHONY:clean

Binary file not shown.

View file

@ -1,10 +1,11 @@
#include "./memPrint.hpp"
//Constructor
memPrint::memPrint(){
}
//Destructor
memPrint::~memPrint(){
}

View file

@ -26,13 +26,19 @@ enum colorBios{
//Type def for biosColor
typedef enum colorBios colorBios;
//Class to print char on screen using Video Ram mapping
class memPrint{
private:
public:
//Constructor
memPrint();
//Destructor
~memPrint();
};

View file

@ -1,23 +1,31 @@
#include "./memory.hpp"
#include "./types.hpp"
//Fonction to copy data into memory
int memcpy(u32 source, u32 dest, u32 size){
//Init source and destination pointer
u32 *sourceTmp=(u32 *)source;
u32 *destTmp=(u32 *)dest;
//Init progression
u32 progress=0;
//Start copy
while(progress != size){
//Copy
*destTmp=*sourceTmp;
//Update source and destination
sourceTmp++;
destTmp++;
//Update progression
progress++;
}
//End and return progression
return progress;
}

View file

@ -3,7 +3,7 @@
#include "./types.hpp"
//Fonction to copy data into memory
int memcpy(u32 source, u32 dest, u32 size);

View file

@ -34,6 +34,7 @@ Helpers/helpers.o:
clean:
cd ./GDT/ && make clean
cd ./Helpers/ && make clean
-rm ./*.o
-rm ./$(EXEC)
#-----------------

View file

@ -19,6 +19,7 @@ dd 0x1BADB002
;----- End -----
;Run kernel
begin:
call _boot ;Start kernel

View file

@ -1,10 +1,17 @@
//To load GDT
#include "GDT/gdt.hpp"
#include "./Helpers/memPrint.hpp"
//----- PiegOS kernel main -----
int main(){
//Test print a char
char* letter=(char*)0xB8A00;
*letter='H';
letter++;
*letter=(GREEN << 4) | BLUE;
//Infinite loop
while(1);
@ -22,7 +29,7 @@ extern "C" void _boot(){
Gdt gdt;
//Load Gdt into memory
gdt.loadGdt();
//gdt.loadGdt();
//Call main function
main();