From e0fbf5ca9599cb7599731fe48573e97d05fa38da Mon Sep 17 00:00:00 2001 From: Alejandro Sior Date: Tue, 26 Jul 2022 14:06:40 +0200 Subject: mem/vmap: add basic virtual memory management abstraction --- arch/amd64/mem/vmap.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 arch/amd64/mem/vmap.h (limited to 'arch/amd64/mem/vmap.h') diff --git a/arch/amd64/mem/vmap.h b/arch/amd64/mem/vmap.h new file mode 100644 index 0000000..c13b887 --- /dev/null +++ b/arch/amd64/mem/vmap.h @@ -0,0 +1,12 @@ +#ifndef AMD64_MEM_VMAP_H +#define AMD64_MEM_VMAP_H + +#include + +typedef struct amd64_mem_vmap { + MemVmap vmap; + + +} Amd64MemVmap; + +#endif \ No newline at end of file -- cgit v1.2.3