os/cpu/i386/memory.h

10 lines
129 B
C
Raw Normal View History

2019-02-09 12:52:45 -06:00
#ifndef CPU_MEMORY_H
#define CPU_MEMORY_H
#include <stdint.h>
#define BLK_SZ 4096
void* alloc_memory(uint32_t blocks);
#endif