openvm_circuit/system/mod.rs
1pub mod connector;
2pub mod memory;
3pub mod native_adapter;
4/// Chip to handle phantom instructions.
5/// The Air will always constrain a NOP which advances pc by DEFAULT_PC_STEP.
6/// The runtime executor will execute different phantom instructions that may
7/// affect trace generation based on the operand.
8pub mod phantom;
9pub mod poseidon2;
10pub mod program;
11pub mod public_values;