diff options
| author | Alejandro Sior <aho@sior.be> | 2022-07-26 14:06:40 +0200 |
|---|---|---|
| committer | Alejandro Sior <aho@sior.be> | 2022-07-26 14:06:40 +0200 |
| commit | e0fbf5ca9599cb7599731fe48573e97d05fa38da (patch) | |
| tree | 2c3b3925c49fd2da68086c6cb4b06a891e823bd5 /arch/amd64/mem/vmap.h | |
| parent | c4e9a8ba15391ae5f1c820744ff1b03544d63467 (diff) | |
mem/vmap: add basic virtual memory management abstraction
Diffstat (limited to 'arch/amd64/mem/vmap.h')
| -rw-r--r-- | arch/amd64/mem/vmap.h | 12 |
1 files changed, 12 insertions, 0 deletions
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 <mem/vmap.h> + +typedef struct amd64_mem_vmap { + MemVmap vmap; + + +} Amd64MemVmap; + +#endif
\ No newline at end of file |
