diff options
-rw-r--r-- | memory.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -21,14 +21,14 @@ #define INTERRUPT_VECTOR_TABLE_START ((uint32_t) 0x0) // all those symbols are defined in the linker script -extern const char __end; -extern const char __start; -extern const char _translation_table_start; -extern const char _translation_table_end; -extern const char _stack_start; -extern const char _stack_top; -extern const char _unprivileged_memory_start; -extern const char _unprivileged_memory_end; +extern char __end; +extern char __start; +extern char _translation_table_start; +extern char _translation_table_end; +extern char _stack_start; +extern char _stack_top; +extern char _unprivileged_memory_start; +extern char _unprivileged_memory_end; #define KERNEL_START ((size_t) &__start) // this is 0x0 #define KERNEL_END ((size_t) &__end) |