sp1-core-executor 6.1.0

RISC-V executor for SP1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Type definitions for the events emitted by the [`crate::Executor`] during execution.

mod byte;
mod global;
mod instr;
mod memory;
mod precompiles;
mod syscall;
mod utils;

pub use byte::*;
pub use global::*;
pub use instr::*;
pub use memory::*;
pub use precompiles::*;
pub use syscall::*;
pub use utils::*;