add 1024 sized sectors

pull/3/head
Szymon Walter 2018-03-20 12:53:27 +01:00
parent ce162aae90
commit 02f70ee974
1 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,12 @@ impl Size for Size512 {
const LOG_SIZE: u32 = 9;
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct Size1024;
impl Size for Size1024 {
const LOG_SIZE: u32 = 10;
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct Size2048;
impl Size for Size2048 {