Skip to content

Commit

Permalink
3rd time's the charm
Browse files Browse the repository at this point in the history
  • Loading branch information
faramire committed Sep 4, 2024
1 parent eec513e commit 58fcb52
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 26 deletions.
2 changes: 1 addition & 1 deletion src/controller.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module controller (
reg [3:0] led_binary;
assign state_out = {inverted, led_binary};

reg [11:0] led_mask_i;
reg [11:0] led_mask_i; // internal, without inversion
assign led_mask = {12{inverted}} ^ led_mask_i;

// Inversion
Expand Down
24 changes: 0 additions & 24 deletions src/debounce.v

This file was deleted.

2 changes: 1 addition & 1 deletion src/rotary_ring_wrapper.v
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ module tt_um_faramire_rotary_ring_wrapper (
assign uio_oe = 0;

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

endmodule

0 comments on commit 58fcb52

Please sign in to comment.