feat: (device) dev_null and dev_rand support
[lunaix-os.git] / lunaix-os / flags.h
1 #ifndef __LUNAIX_FLAGS_H
2 #define __LUNAIX_FLAGS_H
3
4 #ifdef __ARCH_IA32
5 #define PLATFORM_TARGET "x86_32"
6 #else
7 #define PLATFORM_TARGET "unknown"
8 #endif
9
10 #define LUNAIX_VER "0.0.1-dev"
11
12 /*
13     Uncomment below to force LunaixOS use kernel page table when context switch
14    to kernel space NOTE: This will make the kernel global.
15 */
16 // #define USE_KERNEL_PG
17
18 /*
19     Uncomment below to disable all assertion
20 */
21 // #define __LUNAIXOS_NASSERT__
22
23 #endif /* __LUNAIX_FLAGS_H */