-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5abbb6
commit 009dbaf
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
pub mod frames; | ||
pub mod physalloc; | ||
|
||
#[allow(unused_imports)] //future-proof | ||
use { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
use { | ||
crate::map_page, | ||
x86_64::structures::paging::Page, | ||
core::ptr::{read_volatile, write_volatile}, | ||
// TODO | ||
}; | ||
|
||
// Implementation objective: use map_page! macro along with more test pages to create physical mappings, | ||
// then use read_volatile and write_volatile to actually perform operations | ||
// Completion ETA: 8/13/2022 4PM PDT (UTC-7) |