Skip to content

Commit

Permalink
Rename PC -> Bytecode
Browse files Browse the repository at this point in the history
  • Loading branch information
moodlezoup committed Dec 4, 2023
1 parent 4d32731 commit 15336a5
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 86 deletions.
2 changes: 1 addition & 1 deletion jolt-core/src/jolt/trace/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use ark_ff::PrimeField;

use super::{
instruction::JoltInstruction,
vm::{pc::ELFRow, read_write_memory::MemoryOp},
vm::{bytecode::ELFRow, read_write_memory::MemoryOp},
};

trait JoltProvableTrace {
Expand Down
2 changes: 1 addition & 1 deletion jolt-core/src/jolt/trace/rv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use crate::jolt::instruction::srl::SRLInstruction;
use crate::jolt::instruction::xor::XORInstruction;
use crate::jolt::instruction::JoltInstruction;
use crate::jolt::instruction::{add::ADDInstruction, sub::SUBInstruction};
use crate::jolt::vm::{pc::ELFRow, rv32i_vm::RV32I};
use crate::jolt::vm::{bytecode::ELFRow, rv32i_vm::RV32I};
use common::{constants::REGISTER_COUNT, RV32InstructionFormat, RV32IM};

use super::JoltProvableTrace;
Expand Down
Loading

0 comments on commit 15336a5

Please sign in to comment.