Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
calebmkim committed Feb 1, 2024
1 parent 8da7747 commit 801ba2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions file-tests/should-futil/fixed-point-constant.expect
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ component main() -> () {
fp_const3 = std_const(15,19968);
}
wires {
group let0<"static"=1> {
group let0<"promotable"=1> {
a_0.in = fp_const0.out;
a_0.write_en = 1'd1;
let0[done] = a_0.done;
}
group let1<"static"=1> {
group let1<"promotable"=1> {
b_0.in = fp_const1.out;
b_0.write_en = 1'd1;
let1[done] = b_0.done;
}
group let2<"static"=1> {
group let2<"promotable"=1> {
c_0.in = fp_const2.out;
c_0.write_en = 1'd1;
let2[done] = c_0.done;
}
group let3<"static"=1> {
group let3<"promotable"=1> {
d_0.in = fp_const3.out;
d_0.write_en = 1'd1;
let3[done] = d_0.done;
Expand Down
8 changes: 4 additions & 4 deletions file-tests/should-futil/fixed-point-multi-cycle.expect
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ component main() -> () {
mult_pipe1 = std_fp_mult_pipe(2,1,1);
}
wires {
group let0<"static"=4> {
group let0<"promotable"=4> {
bin_read0_0.in = mult_pipe0.out;
bin_read0_0.write_en = mult_pipe0.done;
let0[done] = bin_read0_0.done;
mult_pipe0.left = fp_const0.out;
mult_pipe0.right = fp_const1.out;
mult_pipe0.go = !mult_pipe0.done ? 1'd1;
}
group let1<"static"=1> {
group let1<"promotable"=1> {
b_0.in = bin_read0_0.out;
b_0.write_en = 1'd1;
let1[done] = b_0.done;
}
group let2<"static"=4> {
group let2<"promotable"=4> {
bin_read1_0.in = mult_pipe1.out;
bin_read1_0.write_en = mult_pipe1.done;
let2[done] = bin_read1_0.done;
mult_pipe1.left = fp_const2.out;
mult_pipe1.right = fp_const3.out;
mult_pipe1.go = !mult_pipe1.done ? 1'd1;
}
group upd0<"static"=1> {
group upd0<"promotable"=1> {
d0.addr0 = const0.out;
d0.write_en = 1'd1;
d0.write_data = bin_read1_0.out;
Expand Down

0 comments on commit 801ba2d

Please sign in to comment.