Expand description
A virtual machine and its runtime values.
§Examples
use stak_device::FixedBufferDevice;
use stak_file::VoidFileSystem;
use stak_macro::compile_r7rs;
use stak_process_context::VoidProcessContext;
use stak_r7rs::SmallPrimitiveSet;
use stak_time::VoidClock;
use stak_vm::Vm;
const HEAP_SIZE: usize = 1 << 16;
const BUFFER_SIZE: usize = 1 << 10;
let mut heap = [Default::default(); HEAP_SIZE];
let device = FixedBufferDevice::<BUFFER_SIZE, 0>::new(&[]);
let mut vm = Vm::new(
&mut heap,
SmallPrimitiveSet::new(
device,
VoidFileSystem::new(),
VoidProcessContext::new(),
VoidClock::new(),
),
).unwrap();
const PROGRAM: &[u8] = compile_r7rs!(r#"
(import (scheme write))
(display "Hello, world!")
"#);
vm.initialize(PROGRAM.iter().copied()).unwrap();
vm.run().unwrap();
assert_eq!(vm.primitive_set().device().output(), b"Hello, world!");
Structs§
- A cons.
- A memory on a virtual machine.
- A number.
- A value.
- A virtual machine.
Enums§
- An error of a virtual machine.
- A tag of a stack slot.
- A type in Scheme.
Traits§
- A primitive set.
- A profiler.
Type Aliases§
- A number representation.
- A tag.