resume with the TDC

This commit is contained in:
2020-10-25 22:49:43 -05:00
parent 240b6e26d4
commit 74dd3fb1d8
5 changed files with 58 additions and 29 deletions

View File

@@ -1,10 +1,10 @@
`default_nettype none
module top(i_clk, o_led, lcol1);
module top(i_clk, o_led, o_led_row_0);
parameter WIDTH = 24;
input wire i_clk;
output wire o_led;
output wire lcol1;
output wire o_led_row_0;
wire clk_12MHz;
@@ -20,7 +20,7 @@ module top(i_clk, o_led, lcol1);
counter <= counter + 1'b1;
assign o_led = counter[WIDTH-1];
assign lcol1 = 1'b0;
assign o_led_row_0 = 1'b0;
endmodule
// Local Variables: