mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-20 10:06:31 +00:00
feat(riscv): riscv下能够运行hello world用户程序 (#770)
* feat(riscv): riscv下能够运行hello world用户程序
This commit is contained in:
@ -94,6 +94,7 @@ impl MemoryManagementArch for X86_64MMArch {
|
||||
|
||||
const ENTRY_FLAG_READONLY: usize = 0;
|
||||
|
||||
const ENTRY_FLAG_WRITEABLE: usize = 1 << 1;
|
||||
const ENTRY_FLAG_READWRITE: usize = 1 << 1;
|
||||
|
||||
const ENTRY_FLAG_USER: usize = 1 << 2;
|
||||
|
Reference in New Issue
Block a user