add tut3 folder, shift register code works

This commit is contained in:
2020-10-23 14:42:07 -05:00
parent 3a3830b443
commit 45160b50a9
7 changed files with 173 additions and 4 deletions

13
fsm/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: