Sign in
foss-fpga-tools
/
third_party
/
nextpnr
/
f0abbc71b56a54e1de0a5e775f77a1d14dfea681
/
.
/
generic
/
examples
/
blinky.v
blob: b7cb1b86fa7d0f1d3b56701c7d231c3f31a519a2 [
file
]
module
top
(
input clk
,
output reg
[
7
:
0
]
leds
);
reg
[
25
:
0
]
ctr
;
always
@(
posedge clk
)
ctr
<=
ctr
+
1
'b1;
assign leds = ctr[25:18];
endmodule