mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
Demonstrate binding SVA properties to a VHDL design. Mention example code (with snippets) in section on Verific.
11 lines
243 B
Systemverilog
11 lines
243 B
Systemverilog
module formal_bind(input clk, rst, up, down, [3:0] count);
|
|
|
|
initial assume(rst);
|
|
|
|
assert property(@(posedge clk) count != 4'd15);
|
|
cover property(@(posedge clk) count == 4'd10);
|
|
|
|
endmodule
|
|
|
|
bind updowncount formal_bind fb_inst(.*);
|