Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
quicklogic
/
pp3
/
tests
/
features
/
counter
/
counter.v
blob: 4653bde3d768f70cdc3e8646959d1e3caebcd612 [
file
] [
log
] [
blame
] [
edit
]
module
top
(
input wire clk
,
output wire
[
3
:
0
]
led
);
reg
[
3
:
0
]
cnt
;
initial cnt
<=
0
;
always
@(
posedge clk
)
cnt
<=
cnt
+
1
;
assign led
=
cnt
;
endmodule