mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-17 06:47:49 +00:00
Create basic paging module
This commit is contained in:
8
src/memory/paging/mod.rs
Normal file
8
src/memory/paging/mod.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
const ENTRY_COUNT: usize = 512;
|
||||
|
||||
pub type PhysicalAddress = usize;
|
||||
pub type VirtualAddress = usize;
|
||||
|
||||
pub struct Page {
|
||||
number: usize,
|
||||
}
|
||||
Reference in New Issue
Block a user