blob: ee6141e9b56a6d9b47f6ff7400d0bc457684cd04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef DEF_CONFIG_H
#define DEF_CONFIG_H
#define K_OS_NAME "T/CE"
#define K_OS_VER "0.0.2"
#define K_OS_CODENAME "CPLUSPLUS==\\o/"
/* HEAP CODE TO USE :
Two kernel heap implementations are available :
- Basic implementation, slow but bug-free
- Standard implementation, efficient, buggy, based on the heap code from JamesM's OSDev tutorial
Comment the following define to use the second version */
// #define K_USE_BASIC_HEAP
#endif
|