/// 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;