1
2
3
4
5
6
7
8
9
10
/// An interpreter for an optimised version of Keccak
pub mod keccak;

/// An interpreter for the MIPS instruction set.
pub mod mips;

/// An interpreter for the RISC-V 32I instruction set, following the specification
/// on
/// [riscv.org](https://riscv.org/wp-content/uploads/2019/12/riscv-spec-20191213.pdf).
pub mod riscv32i;