Add docs [wip]

This commit is contained in:
Berkus Decker 2018-02-23 16:50:02 +02:00 committed by Berkus Decker
parent 6018ac2b3d
commit d92dea35af
2 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,9 @@ pub type VirtualAddress = usize;
use self::paging::PAGE_SIZE;
/**
* Frame is an addressable unit of the physical address space.
*/
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct Frame {
number: usize,

View File

@ -40,6 +40,9 @@ pub const PAGE_SIZE: usize = 4096;
pub const ENTRY_COUNT: usize = 512;
/**
* Page is an addressable unit of the virtual address space.
*/
pub struct Page {
number: usize,
}