mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-13 11:13:07 +00:00
* First parts of shift implementation. * Disable range check errors. * Tidy up ASM. * Update comments; fix some .sum() expressions. * First full draft of shift left/right. * Missed a +1. * Clippy. * Address Jacqui's comments. * Add comment. * Fix missing filter. * Address second round of comments from Jacqui.
16 lines
267 B
Rust
16 lines
267 B
Rust
pub(crate) mod bootstrap_kernel;
|
|
pub(crate) mod columns;
|
|
mod control_flow;
|
|
pub mod cpu_stark;
|
|
pub(crate) mod decode;
|
|
mod dup_swap;
|
|
mod jumps;
|
|
pub mod kernel;
|
|
pub(crate) mod membus;
|
|
mod modfp254;
|
|
mod shift;
|
|
mod simple_logic;
|
|
mod stack;
|
|
mod stack_bounds;
|
|
mod syscalls;
|