mirror of https://github.com/YosysHQ/yosys.git
20 lines
262 B
Systemverilog
20 lines
262 B
Systemverilog
|
module top (
|
||
|
input clk,
|
||
|
input a, b, c, d
|
||
|
);
|
||
|
default clocking @(posedge clk); endclocking
|
||
|
|
||
|
assert property (
|
||
|
a ##[*] b |=> c until ##[*] d
|
||
|
);
|
||
|
|
||
|
`ifndef FAIL
|
||
|
assume property (
|
||
|
b |=> ##5 d
|
||
|
);
|
||
|
assume property (
|
||
|
b || (c && !d) |=> c
|
||
|
);
|
||
|
`endif
|
||
|
endmodule
|