Skip to content

Commit

Permalink
fix binary4
Browse files Browse the repository at this point in the history
  • Loading branch information
Schaeff committed Nov 22, 2024
1 parent b8926ae commit 272d5af
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test_data/asm/permutations/binary4.asm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// Binary machine that works on chunks of 4 bits,
/// to be used with permutation lookups.
machine Binary4 with
degree: 32,
machine Main with
degree: 256,
latch: latch,
operation_id: operation_id,
// Allow this machine to be connected via a permutation
Expand Down
2 changes: 1 addition & 1 deletion test_data/asm/permutations/block_to_block.asm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod binary4;
use binary4::Binary4;
use binary4::Main as Binary4;

machine Binary4x with
degree: 32,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod binary4;
use binary4::Binary4;
use binary4::Main as Binary4;

machine Main with degree: 128 {
reg pc[@pc];
Expand Down
2 changes: 1 addition & 1 deletion test_data/asm/permutations/simple.asm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod binary4;
use binary4::Binary4;
use binary4::Main as Binary4;

machine Main with degree: 8 {
reg pc[@pc];
Expand Down
2 changes: 1 addition & 1 deletion test_data/asm/permutations/vm_to_block.asm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod binary4;
use binary4::Binary4;
use binary4::Main as Binary4;

machine Main with degree: 128 {
reg pc[@pc];
Expand Down

0 comments on commit 272d5af

Please sign in to comment.