A poorly written OS for the x86 arch. (WIP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
eOS/kernel/memory.h

6 lines
191 B

3 years ago
#define BLOCK_SIZE 4 // 32 bits = 4 bytes
#define MEMSIZE_TO_BLOCKS(n) ((n*1024)/BLOCK_SIZE)
void init_pmm(unsigned int map_addr, unsigned int bsize); // Initialize physical memory manager