//! Axiom virtual machine and bytecode primitives for TruthLinked cells.
//!
//! This crate defines the bytecode format, opcode set, gas metering, host
//! interface, and interpreter used by TruthLinked Axiom cells. VM behavior is
//! consensus-sensitive: execution must remain deterministic across platforms and
//! releases.
extern crate alloc;
pub use ;
pub use AxiomError;
pub use GasMeter;
pub use ;
pub use ;