paging finally works

This commit is contained in:
Justin C. Miller
2018-04-25 19:53:22 -07:00
parent 2404b22c1f
commit 25b9625635
5 changed files with 18 additions and 12 deletions

View File

@@ -3,6 +3,10 @@
#include <stddef.h>
#include <stdint.h>
inline void * operator new (size_t, void *p) throw() { return p; }
namespace kutil {
void * memset(void *p, uint8_t v, size_t n);