Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
2b38692156ff2742b1c4c94d3b93df97f2145e0c
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
equiv
/
equiv_opt
/
map.map
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