Skip to content

Commit

Permalink
fix not trace bug, dst = P - 1 - op1
Browse files Browse the repository at this point in the history
  • Loading branch information
hongyuanyang-uu committed Feb 12, 2023
1 parent c1e7923 commit 18252c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ impl Process {
_ => panic!("not match opcode:{}", opcode),
};

self.register_selector.dst = value.0;
self.register_selector.dst = self.registers[dst_index];
self.register_selector.dst_reg_sel[dst_index] =
GoldilocksField::from_canonical_u64(1);

Expand Down

0 comments on commit 18252c5

Please sign in to comment.