Skip to content

Commit

Permalink
unused wires must be set aside
Browse files Browse the repository at this point in the history
  • Loading branch information
stevej committed Nov 6, 2024
1 parent 0de33b1 commit 041fe98
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/project.v
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ module tt_um_lfsr_stevej (
assign uio_out = 0;
assign uio_oe = 8'b0000_0000;


lfsr lsfr0 (
.clk(clk),
.rst_n(rst_n),
Expand All @@ -33,6 +32,6 @@ module tt_um_lfsr_stevej (
);

// List all unused inputs to prevent warnings
//wire _unused = &{1'b0};
wire _unused = &{ena, uio_in[7:1], 1'b0};

endmodule

0 comments on commit 041fe98

Please sign in to comment.