Skip to content

Commit

Permalink
missing semicolons on arith runtime (#1521)
Browse files Browse the repository at this point in the history
  • Loading branch information
pacheco committed Jul 2, 2024
1 parent f0af0c1 commit ac6499c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions riscv/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,19 +196,19 @@ impl Runtime {
"arith",
[
format!(
"instr affine_256 link ~> {}",
"instr affine_256 link ~> {};",
instr_link("arith.affine_256", 3, 24, 16) // will use registers 3..27
),
format!(
"instr ec_add link ~> {}",
"instr ec_add link ~> {};",
instr_link("arith.ec_add", 4, 32, 16) // will use registers 4..36
),
format!(
"instr ec_double link ~> {}",
"instr ec_double link ~> {};",
instr_link("arith.ec_double", 2, 16, 16) // will use registers 2..18
),
format!(
"instr mod_256 link ~> {}",
"instr mod_256 link ~> {};",
instr_link("arith.mod_256", 3, 24, 8) // will use registers 3..27
),
],
Expand Down

0 comments on commit ac6499c

Please sign in to comment.