Skip to content

Commit

Permalink
Put hybrid wire in separate always statement
Browse files Browse the repository at this point in the history
  • Loading branch information
upadhyayulakiran committed Dec 17, 2024
1 parent f5a6e2a commit 7e69f8c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ntt_top/rtl/ntt_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -512,9 +512,10 @@ module ntt_top
pw_uvw_i.w3_i = 'h0;
end
endcase

hybrid_pw_uvw_i = {pw_uvw_i, uvw_i.w00_i, uvw_i.w01_i, uvw_i.w10_i, uvw_i.w11_i};
end

always_comb hybrid_pw_uvw_i = {pw_uvw_i, uvw_i.w00_i, uvw_i.w01_i, uvw_i.w10_i, uvw_i.w11_i};

assign bf_enable_mux = ct_mode ? bf_enable : bf_enable_reg;
assign mem_wren_mux = ~shuffle_en & ct_mode ? mem_wren_reg : mem_wren;
assign mem_wr_addr_mux = ~shuffle_en & ct_mode ? mem_wr_addr_reg : mem_wr_addr;
Expand Down

0 comments on commit 7e69f8c

Please sign in to comment.