pub mod zknd;
pub mod zkne;
pub mod zknh;
use crate::rv32::b::zbc::rv32_zbc_helpers;
use crate::rv32::zk::zbkb::rv32_zbkb_helpers;
use crate::rv32::zk::zbkx::rv32_zbkx_helpers;
use crate::rv32::zk::zkn::zknd::rv32_zknd_helpers;
use crate::rv32::zk::zkn::zkne::rv32_zkne_helpers;
use crate::rv32::zk::zkn::zknh::rv32_zknh_helpers;
use crate::{ExecutableInstruction, ExecutionError, InterpreterState};
use ab_riscv_macros::instruction_execution;
use ab_riscv_primitives::prelude::*;
use core::ops::ControlFlow;
#[instruction_execution]
impl<Reg, ExtState, Memory, PC, InstructionHandler, CustomError>
ExecutableInstruction<
InterpreterState<Reg, ExtState, Memory, PC, InstructionHandler, CustomError>,
CustomError,
> for Rv32ZknInstruction<Reg>
where
Reg: Register<Type = u32>,
[(); Reg::N]:,
{
#[inline(always)]
fn execute(
self,
state: &mut InterpreterState<Reg, ExtState, Memory, PC, InstructionHandler, CustomError>,
) -> Result<ControlFlow<()>, ExecutionError<Reg::Type, CustomError>> {
Ok(ControlFlow::Continue(()))
}
}