blob: 42bf84de2c42980a8ee262ad9cacb0469d83e04e (
plain)
1
2
3
4
5
|
#include "multiboot.h"
typedef uint32_t physical_address;
physical_address* pmmngr_alloc_block ();
void pmmngr_free_block (physical_address* p);
uint32_t mem_init(multiboot_information *info);
|