Boot framework rework (#45)
[lunaix-os.git] / lunaix-os / arch / generic / includes / sys / mm / mempart.h
1 #ifndef __LUNAIX_ARCH_MEMPART_H
2 #define __LUNAIX_ARCH_MEMPART_H
3
4
5 #define END_POINT(name) (name + name##_SIZE - 1)
6
7 #define KSTACK_AREA 0
8 #define KSTACK_AREA_SIZE 0
9 #define KSTACK_AREA_END END_POINT(KSTACK_AREA)
10
11 #define USR_EXEC 0
12 #define USR_EXEC_SIZE 0
13 #define USR_EXEC_END END_POINT(USR_EXEC)
14
15 #define USR_MMAP 0
16 #define USR_MMAP_SIZE 0
17 #define USR_MMAP_END END_POINT(USR_MMAP)
18
19 #define USR_STACK 0
20 #define USR_STACK_SIZE 0
21 #define USR_STACK_END END_POINT(USR_STACK)
22
23 #define KERNEL_IMG 0
24 #define KERNEL_IMG_SIZE 0
25 #define KERNEL_IMG_END END_POINT(KERNEL_IMG)
26
27 #define PG_MOUNT_1 0
28 #define PG_MOUNT_1_SIZE 0
29 #define PG_MOUNT_1_END END_POINT(PG_MOUNT_1)
30
31 #define PG_MOUNT_2 0
32 #define PG_MOUNT_2_SIZE 0
33 #define PG_MOUNT_2_END END_POINT(PG_MOUNT_2)
34
35 #define PG_MOUNT_3 0
36 #define PG_MOUNT_3_SIZE 0
37 #define PG_MOUNT_3_END END_POINT(PG_MOUNT_3)
38
39 #define PG_MOUNT_4 0
40 #define PG_MOUNT_4_SIZE 0
41 #define PG_MOUNT_4_END END_POINT(PG_MOUNT_4)
42
43 #define PG_MOUNT_VAR 0
44 #define PG_MOUNT_VAR_SIZE 0
45 #define PG_MOUNT_VAR_END END_POINT(PG_MOUNT_VAR)
46
47 #define VMAP 0
48 #define VMAP_SIZE 0
49 #define VMAP_END END_POINT(VMAP)
50
51 #define VMS_MOUNT_1 0
52 #define VMS_MOUNT_1_SIZE 0
53 #define VMS_MOUNT_1_END END_POINT(VMS_MOUNT_1)
54
55 #endif