summaryrefslogtreecommitdiff
path: root/src/kernel/config.h
blob: f021d9caaf742cbf32056ee4fb18cc3cb58c4084 (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.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