Skip to content

Commit

Permalink
Update project.v
Browse files Browse the repository at this point in the history
  • Loading branch information
SagarDevAchar authored Aug 3, 2024
1 parent ebe0a26 commit 90604d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/project.v
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module tt_um_example (

// All output pins must be assigned. If not used, assign to 0.
assign uo_out = ui_in + uio_in; // Example: ou_out is the sum of ui_in and uio_in
assign uio_out = 0;
assign uio_out = ui_in - uio_in;
assign uio_oe = 0;

// List all unused inputs to prevent warnings
Expand Down

0 comments on commit 90604d4

Please sign in to comment.