Implement Maloc

This commit is contained in:
2025-09-13 22:17:27 +02:00
parent 981a6cd65c
commit 44cfcd9f69
9 changed files with 153 additions and 69 deletions

View File

@@ -23,9 +23,9 @@ pub mod peripherals;
pub mod configuration;
pub mod framebuffer;
pub mod heap;
pub mod irq_interrupt;
pub mod mailbox;
pub mod math;
pub mod timer;
pub fn mmio_read(address: u32) -> u32 {
@@ -39,4 +39,5 @@ pub fn mmio_write(address: u32, data: u32) {
#[derive(Debug)]
pub enum NovaError {
Mailbox,
HeapFull,
}