initial commit
This commit is contained in:
commit
92fc7ff44b
8 changed files with 335 additions and 0 deletions
src
16
src/lib.rs
Normal file
16
src/lib.rs
Normal 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
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue