Simple physical memory allocator, virtual memory manager

This commit is contained in:
2020-07-09 18:50:13 -05:00
parent d3ba3c1d2a
commit 52c3754305
25 changed files with 795 additions and 316 deletions

9
src/systypes.hpp Normal file
View File

@@ -0,0 +1,9 @@
#ifndef SYSTYPES_H
#define SYSTYPES_H
#include <stdint.h>
#include <stddef.h>
typedef uint32_t physaddr_t;
#endif