Memoscopy / libMMU

Rust crate that aims to simplify the process of rebuilding virtual address spaces from a memory dump
https://memoscopy.github.io/libMMU/
GNU General Public License v3.0
6 stars 0 forks source link

Implement PTE for RiscV #10

Closed Esgr0bar closed 3 months ago

Esgr0bar commented 5 months ago

impl PageTableEntryTrait for PageTableEntry {
    type Address = u64;
    type Flags = u64;

    // FIXME: Implement the following methods
    fn is_dirty(&self) -> bool {
        todo!()
    }

    fn is_accessed(&self) -> bool {
        todo!()
    }

    fn is_global(&self) -> bool {
        todo!()
    }

    fn is_readable(&self) -> bool {
        todo!()
    }

    fn is_writable(&self) -> bool {
        todo!()
    }

    fn is_executable(&self) -> bool {
        todo!()
    }
}```
standard3 commented 4 months ago

Should be good with #15

standard3 commented 3 months ago

PR merged