20 lines
278 B
C
20 lines
278 B
C
|
|
// vmm.h
|
|
// Author: Josh Holtrop
|
|
// Date: 09/30/03
|
|
// Rewritten from scratch: 12/23/03
|
|
|
|
|
|
|
|
void vmm_init();
|
|
void *malloc(dword bytes);
|
|
int free(void *ptr);
|
|
void vmm_map1(dword virt, dword physical);
|
|
void vmm_mapn(dword virt, dword physical, dword n);
|
|
|
|
|
|
|
|
|
|
|
|
|