openvm_native_circuit/loadstore/
mod.rs
1use openvm_circuit::arch::{VmAirWrapper, VmChipWrapper};
2
3#[cfg(test)]
4mod tests;
5
6mod core;
7pub use core::*;
8
9use super::adapters::loadstore_native_adapter::{
10 NativeLoadStoreAdapterAir, NativeLoadStoreAdapterChip,
11};
12
13pub type NativeLoadStoreAir<const NUM_CELLS: usize> =
14 VmAirWrapper<NativeLoadStoreAdapterAir<NUM_CELLS>, NativeLoadStoreCoreAir<NUM_CELLS>>;
15pub type NativeLoadStoreChip<F, const NUM_CELLS: usize> = VmChipWrapper<
16 F,
17 NativeLoadStoreAdapterChip<F, NUM_CELLS>,
18 NativeLoadStoreCoreChip<F, NUM_CELLS>,
19>;