plonky2/evm/src/cpu/mod.rs
Jacqueline Nabaglo cae5f4870c
Stack pointer + underflow/overflow checks (#710)
* Stack pointer + underflow/overflow checks

* Daniel comments

* Extra docs
2022-09-10 13:20:30 -07:00

11 lines
194 B
Rust

pub(crate) mod bootstrap_kernel;
pub(crate) mod columns;
mod control_flow;
pub mod cpu_stark;
pub(crate) mod decode;
mod jumps;
pub mod kernel;
mod simple_logic;
mod stack_bounds;
mod syscalls;