Sergej Schumilo cd702b528c Initial Release of Nyx
Co-authored-by: Cornelius Aschermann <cornelius@hexgolems.com>
2021-11-14 22:20:53 +01:00

17 lines
256 B
C

#pragma once
#include <stdint.h>
/* don't! */
#define MAX_REGIONS 8
#ifndef PAGE_SIZE
#define PAGE_SIZE 0x1000
#endif
#define BITMAP_SIZE(x) ((x/PAGE_SIZE)/8)
#define DIRTY_STACK_SIZE(x) ((x/PAGE_SIZE)*sizeof(uint64_t))
uint64_t get_ram_size(void);