1
2
3
4
5
6
7
8
9
10
pub mod air;
pub mod columns;
pub mod event;
pub mod trace;

pub use event::*;

/// A chip that implements the CPU.
#[derive(Default)]
pub struct CpuChip;