Skip to content

Commit 28ff929

Browse files
committed
chore: mv precompiles into leanvm crate
1 parent dc68223 commit 28ff929

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

crates/leanIsa/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pub mod precompiles;
1+

crates/leanVm/src/air/constant.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use lean_isa::precompiles::PRECOMPILES;
1+
use crate::bytecode::precompiles::PRECOMPILES;
22

33
/// The total number of columns that represent a single instruction in the bytecode ROM.
44
pub(crate) const N_INSTRUCTION_COLUMNS: usize = 15;

crates/leanVm/src/bytecode/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ pub mod hint;
77
pub mod instruction;
88
pub mod operand;
99
pub mod operation;
10+
pub mod precompiles;
1011
pub mod program;
1112

1213
/// Represents the compiled bytecode of a program for the zkVM.

0 commit comments

Comments
 (0)