summaryrefslogtreecommitdiff
path: root/src/kernel/config.h
blob: 38487dcf8f7f73cb84439ffdd2a7b90cc4f053d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DEF_CONFIG_H
#define DEF_CONFIG_H

#define K_OS_NAME "Grapes"
#define K_OS_VER "0.0.4"
#define K_OS_CODENAME "Cat in my heart"

/*	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