SDVD/design/seconds_display.sv
Waylon Cude 34d62a197f
All checks were successful
ci/woodpecker/push/test-workflow Pipeline was successful
Add some stubbed out modules for the first bit
Hopefully theses are right ...
2025-05-16 17:58:25 -07:00

11 lines
182 B
Systemverilog

module seconds_display(
input logic clk,
input logic reset,
input [$clog2(60)-1:0] counter,
output [7:0] display_tens,
output [7:0] display_ones
);
endmodule