clippy stuff

This commit is contained in:
2024-09-02 17:51:10 +03:00
parent 2dfd253f34
commit 12e9a068e9
27 changed files with 292 additions and 170 deletions

View File

@@ -2,7 +2,7 @@
//use x86_64::align_up;
pub const HEAP_START: usize = 0o_000_001_000_000_0000; // 0x40000000 - 0x40019000
pub const HEAP_START: usize = 0x40000000; // 0x40000000 - 0x40019000
pub const HEAP_SIZE: usize = 100 * 1024; // 100 KiB
// A simple allocator that allocates memory linearly and ignores freed memory.