Create a new fixed_size_block allocator submodule

This commit is contained in:
Philipp Oppermann
2020-01-20 14:01:59 +01:00
parent a9fe65a0ce
commit 7381e11f3c
2 changed files with 2 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ use x86_64::{
};
pub mod bump;
pub mod fixed_size_block;
pub mod linked_list;
pub const HEAP_START: usize = 0x_4444_4444_0000;

View File

@@ -0,0 +1 @@