Kernelite 0.1.0
Kernelite is a minimalist, educational operating system kernel built from scratch. The project aims to recreate core components of the Linux architecture to explore the fundamentals of operating system design and hardware-software interaction.
Loading...
Searching...
No Matches
linker_defines.h
Go to the documentation of this file.
1
12#ifndef LINKER_LINKER_DEFINES_H
13#define LINKER_LINKER_DEFINES_H
14
16#define LINKER_BITMAP_SIZE 0x10000
17
21#define LINKER_PAGE_SIZE 0x1000
22
24#define ID_MAP_NUM_PAGES 0x6
25
27#define ID_MAP_SIZE (ID_MAP_NUM_PAGES * LINKER_PAGE_SIZE)
28
29#endif /* LINKER_LINKER_DEFINES_H */