Skip to content

Commit

Permalink
add missing case for sra32 to basic machine
Browse files Browse the repository at this point in the history
  • Loading branch information
morganthomas committed Apr 11, 2024
1 parent 2835d2a commit 07f28f3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions basic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1122,6 +1122,9 @@ impl<F: PrimeField32 + TwoAdicField> Machine<F> for BasicMachine<F> {
<Shr32Instruction as Instruction<Self, F>>::OPCODE => {
Shr32Instruction::execute_with_advice::<Adv>(self, ops, advice)
}
<Sra32Instruction as Instruction<Self, F>>::OPCODE => {
Sra32Instruction::execute_with_advice::<Adv>(self, ops, advice)
}
<Lt32Instruction as Instruction<Self, F>>::OPCODE => {
Lt32Instruction::execute_with_advice::<Adv>(self, ops, advice)
}
Expand Down

0 comments on commit 07f28f3

Please sign in to comment.