Skip to main content

ab_riscv_interpreter/v/zve64x/
zve64x_helpers.rs

1//! Opaque helpers for Zve64x extension
2
3/// Size of an instruction in bytes.
4///
5/// All instructions here are same size.
6#[doc(hidden)]
7pub const INSTRUCTION_SIZE: u8 = size_of::<u32>() as u8;