diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-24 21:18:55 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-24 21:18:55 +0300 |
| commit | e033569910aecb4d8fb437a622e542b8803834ec (patch) | |
| tree | b7e31d1b266dfbd3b1aa79ae4db47d584541c8bc /arch | |
| parent | 12be40e22aae582cca9abbd151031edaab800cae (diff) | |
| download | kmi-e033569910aecb4d8fb437a622e542b8803834ec.tar.gz kmi-e033569910aecb4d8fb437a622e542b8803834ec.zip | |
initial musings about exec
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/riscv64/include/vmem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/riscv64/include/vmem.h b/arch/riscv64/include/vmem.h index fc3df00..46c12b1 100644 --- a/arch/riscv64/include/vmem.h +++ b/arch/riscv64/include/vmem.h @@ -16,10 +16,10 @@ * riscv64. */ #if __riscv_xlen == 64 - /** When running riscv64, each page table has 512 8byte entries. */ +/** When running riscv64, each page table has 512 8byte entries. */ #define RISCV_NUM_LEAVES 512 #else - /** When running riscv32, each page table has 1024 4byte entries. */ +/** When running riscv32, each page table has 1024 4byte entries. */ #define RISCV_NUM_LEAVES 1024 #endif |
