#machine #gsm

gsm

A very simple generic stack machine crate

12 releases (6 stable)

1.3.0 Jun 8, 2020
1.2.1 May 19, 2020
0.5.0 Feb 21, 2020

#207 in Emulators


Used in cclang

Apache-2.0

13KB
378 lines

Generic Stack Machine

This crates implements a generic stack machine that will execute any client defined set of instructions and track state for you. All classes are generic on a type that implements the Instruction and Clone traits. The Machine takes a Script made up of objects that implement those traits and when executing, the Machine calls the execute function for each Instruction so that the Machine state can change and other side effects may happen.

The source code file test/simple.rs demonstrates how a client would implement Instruction objects for use in scripts.

Dependencies

~1.5–2.4MB
~49K SLoC