plonky2/evm/src/cpu/mod.rs
Hamy Ratoanina 1d60431992
Store top of the stack in memory channel 0 (#1215)
* Store top of the stack in memory channel 0

* Fix interpreter

* Apply comments

* Remove debugging code

* Merge commit

* Remove debugging comments

* Apply comments

* Fix witness generation for exceptions

* Fix witness generation for exceptions (again)

* Fix modfp254 constraint
2023-10-11 16:28:49 -04:00

22 lines
387 B
Rust

pub(crate) mod bootstrap_kernel;
pub(crate) mod columns;
mod contextops;
pub(crate) mod control_flow;
pub mod cpu_stark;
pub(crate) mod decode;
mod dup_swap;
mod gas;
mod halt;
mod jumps;
pub mod kernel;
pub(crate) mod membus;
mod memio;
mod modfp254;
mod pc;
mod push0;
mod shift;
pub(crate) mod simple_logic;
pub(crate) mod stack;
pub(crate) mod stack_bounds;
mod syscalls_exceptions;