Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
8bea0781c44e5ebbeab5135503fd4ff8b9daec3b
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
equiv
/
equiv_opt
/
top.v
blob: 1b1b94777d5cdebcdc996ecda01915937127bb70 [
file
]
module
top
(
input wire clk
,
rst
,
output reg count
);
always
@(
posedge clk
or
posedge rst
)
begin
if
(
rst
)
count
<=
0
;
else
count
<=
count
+
1
'b1;
end
endmodule