xref: /DragonOS/kernel/src/arch/x86_64/elf.rs (revision b5b571e02693d91eb6918d3b7561e088c3e7ee81)
1 use crate::{arch::MMArch, libs::elf::ElfArch, mm::MemoryManagementArch};
2 
3 #[derive(Debug, Clone, Copy, Hash)]
4 pub struct X86_64ElfArch;
5 
6 impl ElfArch for X86_64ElfArch {
7     const ELF_ET_DYN_BASE: usize = MMArch::USER_END_VADDR.data() / 3 * 2;
8 
9     const ELF_PAGE_SIZE: usize = MMArch::PAGE_SIZE;
10 }
11