Skip to content

Commit

Permalink
fix: change wire int assignment 3
Browse files Browse the repository at this point in the history
  • Loading branch information
litneet64 committed May 31, 2024
1 parent a2f160c commit f57bf16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/puf_bit.v
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module puf_bit(
localparam n_half = n_ro / 2;

wire[n_ro-1:0] ro_out;
wire[n_ro-1:0] inter_en = (en) ? n_ro'b1 : n_ro'b0;
reg[n_ro-1:0] inter_en = (en) ? n_ro'b1 : n_ro'b0;

wire mux_out_1, mux_out_2;
wire ctr_out_1, ctr_out_2;
Expand Down

0 comments on commit f57bf16

Please sign in to comment.