summaryrefslogtreecommitdiff
path: root/src/kernel/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/config.h')
-rw-r--r--src/kernel/config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/kernel/config.h b/src/kernel/config.h
new file mode 100644
index 0000000..ccad9cf
--- /dev/null
+++ b/src/kernel/config.h
@@ -0,0 +1,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