initial commit

This commit is contained in:
Michael Sippel 2024-05-04 18:11:13 +02:00
commit 92fc7ff44b
Signed by: senvas
GPG key ID: F96CF119C34B64A6
8 changed files with 335 additions and 0 deletions

16
src/lib.rs Normal file
View file

@ -0,0 +1,16 @@
//! Tiny Stack Computer
//!
//! Minimalistic stack-based VM with Rust interfaces to
//! build & execute programs.
pub mod vm;
pub mod assembler;
pub mod linker;
pub mod test;
pub use {
vm::{VM_Instruction, VM_Word, VM},
assembler::Assembler,
linker::Linker
};