PiegOS/kernel/Helpers/memory.c

32 lines
520 B
C
Raw Normal View History

2015-07-28 14:19:00 +04:00
#include "./memory.h"
#include "./types.h"
2015-07-20 20:06:20 +04:00
2015-07-22 13:22:53 +04:00
//Fonction to copy data into memory
2015-07-21 14:23:57 +04:00
int memcpy(u32 source, u32 dest, u32 size){
2015-07-20 20:06:20 +04:00
2015-07-22 13:22:53 +04:00
//Init source and destination pointer
2015-07-21 14:23:57 +04:00
u32 *sourceTmp=(u32 *)source;
u32 *destTmp=(u32 *)dest;
2015-07-20 20:06:20 +04:00
2015-07-22 13:22:53 +04:00
//Init progression
2015-07-21 14:23:57 +04:00
u32 progress=0;
2015-07-20 20:06:20 +04:00
2015-07-22 13:22:53 +04:00
//Start copy
2015-07-20 20:06:20 +04:00
while(progress != size){
2015-07-22 13:22:53 +04:00
//Copy
2015-07-20 20:06:20 +04:00
*destTmp=*sourceTmp;
2015-07-22 13:22:53 +04:00
//Update source and destination
2015-07-20 20:06:20 +04:00
sourceTmp++;
destTmp++;
2015-07-22 13:22:53 +04:00
//Update progression
2015-07-20 20:06:20 +04:00
progress++;
}
2015-07-22 13:22:53 +04:00
//End and return progression
2015-07-20 20:06:20 +04:00
return progress;
}