Initial commit

This commit is contained in:
2026-01-10 11:03:18 +03:00
commit 475cc318ac
5 changed files with 1015 additions and 0 deletions

11
src/azure_led_blink.sv Normal file
View File

@@ -0,0 +1,11 @@
// %SOURCE_FILE_HEADER%
//
module azure_led_blink (
input logic CLK_125M,
output logic [7:0] LEDS
);
logic [26:0] cntr;
always_ff @(posedge CLK_125M) cntr <= cntr + 1'b1;
assign LEDS = cntr[$high(cntr) -: 8];
endmodule // azure_led_blink