diff options
| author | Ada Christine <adachristine18@gmail.com> | 2021-04-12 12:59:28 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2021-04-12 12:59:28 +0000 |
| commit | ce2c1768fc9c0537136ff0af563766e23f2e9355 (patch) | |
| tree | 149ed7f9f4ceb92cbe44789330528b9236aa8ff2 | |
| parent | 4d5ac35f3384719ed5d415db6c6bf3dc1f81134e (diff) | |
reduced startup stack size
| -rw-r--r-- | api/kernel/entry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/kernel/entry.h b/api/kernel/entry.h index 7229954..0dae45d 100644 --- a/api/kernel/entry.h +++ b/api/kernel/entry.h @@ -1,6 +1,6 @@ #pragma once -#define KERNEL_ENTRY_STACK_SIZE 0x8000 +#define KERNEL_ENTRY_STACK_SIZE 0x4000 #define KERNEL_ENTRY_STACK_HEAD 0xffffffffff000000 #define KERNEL_ENTRY_STACK_BASE (KERNEL_ENTRY_STACK_HEAD - KERNEL_ENTRY_STACK_SIZE) |
