summaryrefslogtreecommitdiff
path: root/src/memory.h
blob: 30cce75d7a8eb78bce832784d6b6cbfae3df8a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __MEMORY_H
#define __MEMORY_H

#include <stdint.h>
#include "multiboot.h"

uint32_t memory_available;
uint32_t total_memory;

void init_memory(multiboot_info_t *mb);

#endif