blu_os
Loading...
Searching...
No Matches
virtualmemorymanager.h
1
//
2
// Created by dylan on 14/07/2026.
3
//
4
5
#ifndef BLU_OS_VIRTUALMEMORYMANAGER_H
6
#define BLU_OS_VIRTUALMEMORYMANAGER_H
7
8
#include <
stdint.h
>
9
10
#define PAGE_PRESENT 0x1
11
#define PAGE_WRITE 0x2
12
#define PAGE_USER 0x4
13
14
void
initVirtualMemoryManager();
15
16
void
mapPage(uint32_t virtualAddress, uint32_t physicalAddress, uint32_t flags);
17
18
#endif
//BLU_OS_VIRTUALMEMORYMANAGER_H
stdint.h
Fixed-width integer types.
kernel
include
arch
x86
i386
mmu
virtualmemorymanager.h
Generated by
1.16.1