vexide_core/allocator/
mod.rs

1
2
3
4
5
6
//! Simple allocator using the Talc on the Brain and jemalloc in the sim.

#[cfg(all(target_arch = "arm", target_os = "none"))]
pub mod vexos;
#[cfg(target_arch = "wasm32")]
mod wasm;