aboutsummaryrefslogtreecommitdiff
path: root/kernel/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/config.h')
-rw-r--r--kernel/config.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/kernel/config.h b/kernel/config.h
deleted file mode 100644
index a0e59d3..0000000
--- a/kernel/config.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#if !defined(__cplusplus)
-#include <stdbool.h>
-#endif
-
-#include <stddef.h>
-#include <stdint.h>
-
-#if defined(__linux__)
-#error "This kernel needs to be compiled with a cross-compiler."
-#endif
-
-#if !defined(__i386__)
-#error "This kernel needs to be compiled with a ix86-elf compiler"
-#endif
-
-#define IN_KERNEL
-
-#define K_HIGHHALF_ADDR ((size_t)0xC0000000)
-
-#define OS_NAME "macrO.Scope"
-#define OS_VERSION "0.0.1"
-
-// Comment to disable either form of debug log output
-#define DBGLOG_TO_SERIAL
-#define DBGLOG_TO_SCREEN
-
-/* vim: set ts=4 sw=4 tw=0 noet :*/