mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-12 02:33:06 +00:00
* 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
22 lines
387 B
Rust
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;
|