aboutsummaryrefslogblamecommitdiff
path: root/kernel/config.h
blob: d198295e13d664e4d5345929e6a515c65b24dde0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                  
                                            
 
                             





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