Newer
Older
honey-os / src / kernel / memory / memory.c
@biosfood biosfood on 22 May 2022 198 bytes initial commit
#include <memory.h>
#include <stdint.h>

void setupMemory() {
    reservePagesUntil(0x900); // address 0x900000, until the end of where the
                              // kernel data was mapped
}