openvm_rv32im_circuit/hintstore/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
use openvm_circuit::arch::VmChipWrapper;

use crate::adapters::Rv32HintStoreAdapterChip;

mod core;
pub use core::*;

#[cfg(test)]
mod tests;

pub type Rv32HintStoreChip<F> =
    VmChipWrapper<F, Rv32HintStoreAdapterChip<F>, Rv32HintStoreCoreChip<F>>;