Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement PTE for RiscV #10

Closed
Esgr0bar opened this issue Jun 20, 2024 · 2 comments · Fixed by #15
Closed

Implement PTE for RiscV #10

Esgr0bar opened this issue Jun 20, 2024 · 2 comments · Fixed by #15
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@Esgr0bar
Copy link
Contributor

Esgr0bar commented Jun 20, 2024

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!()
    }
}```
@Esgr0bar Esgr0bar added the enhancement New feature or request label Jun 20, 2024
@Esgr0bar Esgr0bar added this to the v0.1.0 milestone Jun 20, 2024
@theo-abel
Copy link
Member

Should be good with #15

@Esgr0bar Esgr0bar linked a pull request Jul 12, 2024 that will close this issue
@theo-abel
Copy link
Member

PR merged

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants