This commit is contained in:
2026-06-17 22:42:14 +02:00
parent 0dbbcce227
commit c7d86956f2
11 changed files with 853 additions and 1 deletions

7
blinky/src/main.spade Normal file
View File

@ -0,0 +1,7 @@
#[no_mangle(all)]
entity main(clk: clock, leds: inv [bool; 4]) {
reg(clk) counter: uint<24> = counter +. 1;
set leds = (counter >> 20).as_bits()[0..4];
}