o1vm/interpreters/mod.rs
1/// An interpreter for an optimised version of Keccak
2pub mod keccak;
3
4/// An interpreter for the MIPS instruction set.
5pub mod mips;
6
7/// An interpreter for the RISC-V 32IM instruction set, following the specification
8/// on
9/// [riscv.org](https://riscv.org/wp-content/uploads/2019/12/riscv-spec-20191213.pdf).
10pub mod riscv32im;