diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/README | 1 | ||||
-rw-r--r-- | src/kernel/config.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/common/README b/src/common/README index deae76f..e40df40 100644 --- a/src/common/README +++ b/src/common/README @@ -8,6 +8,7 @@ It relies on a few functions being exported : - dbg_print(const char* str) - void* malloc(size_t size) - free(void* ptr) +- yield() These function are supposed to be defined in the code that calls the common functions. The headers for these functions are to be diff --git a/src/kernel/config.h b/src/kernel/config.h index a0e59d3..96e9aa1 100644 --- a/src/kernel/config.h +++ b/src/kernel/config.h @@ -17,7 +17,7 @@ #define K_HIGHHALF_ADDR ((size_t)0xC0000000) -#define OS_NAME "macrO.Scope" +#define OS_NAME "kogata" #define OS_VERSION "0.0.1" // Comment to disable either form of debug log output |