sp1_core_machine/memory/mod.rs
1mod bump;
2mod consistency;
3mod global;
4mod instructions;
5mod local;
6mod page_prot;
7mod page_prot_global;
8mod page_prot_local;
9
10pub use bump::*;
11pub use consistency::*;
12pub use global::*;
13pub use instructions::*;
14pub use local::*;
15pub use page_prot::*;
16pub use page_prot_global::*;
17pub use page_prot_local::*;
18
19/// The type of global/local memory chip that is being initialized.
20#[derive(Debug, Clone, Copy, PartialEq, Eq)]
21pub enum MemoryChipType {
22 Initialize,
23 Finalize,
24}