hos/vmm.h

24 lines
260 B
C

// vmm.h
// Author: Josh Holtrop
// Date: 09/30/03
typedef struct {
dword page[1024];
} PageTable;
typedef struct {
dword pageTables[1024];
} PageDirectory;
void vmm_init();
void *malloc(dword bytes);
int free(void *ptr);