Skip to content

Commit

Permalink
removved multidriven output
Browse files Browse the repository at this point in the history
  • Loading branch information
faramire committed Apr 17, 2024
1 parent b0a239a commit 0ee4610
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/stopwatch_top.v
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module tt_um_faramire_stopwatch (
// All output pins must be assigned. If not used, assign to 0.
assign uio_out = 0;
assign uio_oe = 0;
assign uo_out[7:3] = 0;
assign uo_out[7:5] = 0;

wire dividedClock; // 100 Hz clock
wire counter_enable;
Expand Down Expand Up @@ -497,7 +497,7 @@ module SPI_Master_With_Single_CS
#(parameter SPI_MODE = 0,
parameter CLKS_PER_HALF_BIT = 2,
parameter MAX_BYTES_PER_CS = 2,
parameter CS_INACTIVE_CLKS = 2)
parameter CS_INACTIVE_CLKS = 0
(
// Control/Data Signals,
input i_Rst_L, // FPGA Reset
Expand Down Expand Up @@ -853,6 +853,5 @@ module SPI_Master
o_SPI_Clk <= r_SPI_Clk;
end // else: !if(~i_Rst_L)
end // always @ (posedge i_Clk or negedge i_Rst_L)


endmodule // SPI_Master
endmodule // SPI_Master

0 comments on commit 0ee4610

Please sign in to comment.