This commit is contained in:
2020-10-25 22:09:23 -05:00
parent 3a9c0343c1
commit 240b6e26d4
7 changed files with 297 additions and 0 deletions

13
wb-tut4/rtl/clk_gen.v Normal file
View File

@@ -0,0 +1,13 @@
`default_nettype none
// dummy clock generator, should be replaced by a PLL clock gen eventually
module clk_gen(
input wire i_clk,
output wire o_clk
);
assign o_clk = i_clk;
endmodule
// Local Variables:
// verilog-library-directories:(".." "./rtl" ".")
// End: