Nigel
13e9beea79
Folders now are alll lower case Started working on the implementation of the Virtual memory manager. Implemented allocate and free page funtionality for as far as I can atm. Implemented the
9 lines
214 B
C
9 lines
214 B
C
inline void* memset (void* ptr, int value, size_t num){
|
|
for( int i = 0; i < num; i++ )
|
|
{
|
|
unsigned char* data = (unsigned char*)ptr+ i;
|
|
*data = (unsigned char)value;
|
|
}
|
|
return ptr;
|
|
}
|