diff options
author | Marvin Borner | 2019-11-20 22:17:48 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-20 22:28:30 +0100 |
commit | 0ba991750314310a5e53b0d8135aef5b1352b261 (patch) | |
tree | acae7106a24b85116cd7119bd239c3d9299f2ba8 /src/kernel/lib/lib.h | |
parent | 6ca5f1bcec7f0716bad5e1cdd38d41be137fe7e5 (diff) |
Began two-stage hdd bootloader and os installer
Diffstat (limited to 'src/kernel/lib/lib.h')
-rw-r--r-- | src/kernel/lib/lib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h index 5cc3d1f..c431e1d 100644 --- a/src/kernel/lib/lib.h +++ b/src/kernel/lib/lib.h @@ -2,6 +2,7 @@ #define MELVIX_LIB_H #include <stddef.h> +#include <stdint.h> /** * Find the length of a string @@ -67,4 +68,8 @@ void *memset(void *dest, char val, size_t count); */ int memcmp(const void *a_ptr, const void *b_ptr, size_t size); +void memory_init(); + +uint32_t memory_get_all(); + #endif |