-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[config] Fix the format for config file
- Loading branch information
1 parent
34c44eb
commit ed2162b
Showing
4 changed files
with
17 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
# The base address of the user space. | ||
user_space_base = 0x1000 | ||
user-space-base = 0x1000 | ||
# The size of the user space. | ||
user_space_size = 0x7fff_ffff_f000 | ||
|
||
# The base address of the user heap. | ||
user_heap_base = 0x3fc0_0000 | ||
# The size of the user heap. | ||
user_heap_size = 0x40_0000 | ||
user-space-size = 0x7fff_ffff_f000 | ||
|
||
# The highest address of the user stack. | ||
user_stack_top = 0x7fff_0000_0000 | ||
user-stack-top = 0x7fff_0000_0000 | ||
# The size of the user stack. | ||
user_stack_size = 0x1_0000 | ||
user-stack-size = 0x1_0000 | ||
|
||
# The size of the kernel stack. | ||
kernel_stack_size = 0x40000 | ||
kernel-stack-size = 0x40000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
# The base address of the user space. | ||
user_space_base = 0x1000 | ||
user-space-base = 0x1000 | ||
# The size of the user space. | ||
user_space_size = 0x3f_ffff_f000 | ||
|
||
# The base address of the user heap. | ||
user_heap_base = 0x3fc0_0000 | ||
# The size of the user heap. | ||
user_heap_size = 0x40_0000 | ||
user-space-size = 0x3f_ffff_f000 | ||
|
||
# The highest address of the user stack. | ||
user_stack_top = 0x4_0000_0000 | ||
user-stack-top = 0x4_0000_0000 | ||
# The size of the user stack. | ||
user_stack_size = 0x1_0000 | ||
user-stack-size = 0x1_0000 | ||
|
||
# The size of the kernel stack. | ||
kernel_stack_size = 0x40000 | ||
kernel-stack-size = 0x40000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
# The base address of the user space. | ||
user_space_base = 0x1000 | ||
user-space-base = 0x1000 | ||
# The size of the user space. | ||
user_space_size = 0x7fff_ffff_f000 | ||
|
||
# The base address of the user heap. | ||
user_heap_base = 0x3fc0_0000 | ||
# The size of the user heap. | ||
user_heap_size = 0x40_0000 | ||
user-space-size = 0x7fff_ffff_f000 | ||
|
||
# The highest address of the user stack. | ||
user_stack_top = 0x7fff_0000_0000 | ||
user-stack-top = 0x7fff_0000_0000 | ||
# The size of the user stack. | ||
user_stack_size = 0x1_0000 | ||
user-stack-size = 0x1_0000 | ||
|
||
# The size of the kernel stack. | ||
kernel_stack_size = 0x40000 | ||
kernel-stack-size = 0x40000 |