Cucumber/Kernel/include/Tier0/physmem.h

15 lines
258 B
C
Raw Normal View History

#ifndef __PHYSMEM_H__
#define __PHYSMEM_H__
#include "types.h"
#define PHYSMEM_PAGE_SIZE 4096
2011-07-02 11:03:29 +00:00
void physmem_init(u64 MemorySize);
u64 physmem_allocate_page(void);
u64 physmem_page_to_physical(u64 Page);
u64 physmem_physical_to_page(u64 Physical);
#endif