5#ifndef BLU_OS_PHYSICALMEMORYMANAGER_H
6#define BLU_OS_PHYSICALMEMORYMANAGER_H
11#define KERNEL_VMA 0xC0000000
16#define ERROR 0x00000000
18typedef uint32_t physical_addr_t;
20extern uint32_t endKernel;
22void initPhysicalMemoryManager(
size_t memSizeInMb);
24physical_addr_t kallocFrame();
26void kfreeFrame(physical_addr_t frameAddress);
Common definitions for C programs.
Fixed-width integer types.