blob: f021d9caaf742cbf32056ee4fb18cc3cb58c4084 (
plain) (
tree)
|
|
#ifndef DEF_CONFIG_H
#define DEF_CONFIG_H
#define K_OS_NAME "T/CE"
#define K_OS_VER "0.0.1"
#define K_OS_CODENAME "Nyanyanya"
/* 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
|