Sign in
foss-fpga-tools
/
third_party
/
yosys
/
de3476cc233c1c78d3e956aa7e9bd1003ac37f66
/
.
/
tests
/
simple
/
always01.v
blob: 21379cb017a2f93f66eef4e6720deaeea8b3a3c0 [
file
]
module
uut_always01
(
clock
,
reset
,
count
);
input clock
,
reset
;
output
[
3
:
0
]
count
;
reg
[
3
:
0
]
count
;
always
@(
posedge clock
)
count
<=
reset
?
0
:
count
+
1
;
endmodule