Sign in
foss-fpga-tools
/
third_party
/
yosys
/
67be62a957c565bfa03f084c8f110d65ca14196b
/
.
/
frontends
/
verific
/
example.sv
blob: 21a5d42c85c1100c5013bfa02244defd62f74295 [
file
] [
log
] [
blame
]
module
top
(
input clk
,
rst
,
output reg
[
3
:
0
]
cnt
);
initial cnt
=
0
;
always
@(
posedge clk
)
begin
if
(
rst
)
cnt
<=
0
;
else
cnt
<=
cnt
+
4
'd 1;
end
always @(posedge clk) begin
assume (cnt != 10);
assert (cnt != 15);
end
endmodule