Paging struc

paging
E. Almqvist 3 years ago
parent be8865f6fd
commit 58aa380708
  1. 2
      kernel/memory.c
  2. 2
      kernel/memory.h
  3. 0
      kernel/paging.c
  4. 4
      kernel/paging.h

@ -1,2 +0,0 @@
#include "memory.h"

@ -1,2 +0,0 @@
char* malloc(unsigned int size);
void mfree(char* p);

@ -0,0 +1,4 @@
#define PAGE_SIZE 100
#define PAGE_TABLE_SIZE 128
char* malloc(unsigned int pages);
Loading…
Cancel
Save