first commit

This commit is contained in:
2025-11-24 21:44:39 -05:00
commit 1b017953ee
22 changed files with 240604 additions and 0 deletions

16
rtl/Blinky.v Normal file
View File

@@ -0,0 +1,16 @@
module Blinky (
input clock,
input clock_en,
output reg led
);
initial begin
led <= 1'b0;
end
always @(posedge clock) begin
if(clock_en)
led <= ~led;
end
endmodule