use virtual workspaces for heap

This commit is contained in:
2025-12-19 15:32:54 +01:00
parent 31e68b9bd2
commit abdef70198
10 changed files with 138 additions and 112 deletions

4
NovaError/Cargo.toml Normal file
View File

@@ -0,0 +1,4 @@
[package]
name = "NovaError"
version = "0.1.0"
edition = "2024"

11
NovaError/src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
#![no_std]
use core::fmt::Debug;
use core::prelude::rust_2024::derive;
#[derive(Debug)]
pub enum NovaError {
Mailbox,
HeapFull,
EmptyHeapSegmentNotAllowed,
}