strop 0.3.0

stochastically generates machine code
Documentation
1
2
3
4
5
6
7
8
9
//! A back-end targeting MIPS processors.

pub mod emu;
mod isa;
mod o32;
mod optimizer;

pub use isa::Insn;
pub use o32::O32;