mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-09 20:50:51 +00:00
Add more SVA test cases for future Verific work
This commit is contained in:
parent
5be535517c
commit
84f15260b5
5 changed files with 74 additions and 1 deletions
6
tests/sva/basic04.sv
Normal file
6
tests/sva/basic04.sv
Normal file
|
@ -0,0 +1,6 @@
|
|||
module top_properties (input logic clock, read, write, ready);
|
||||
a_rw: assert property ( @(posedge clock) !(read && write) );
|
||||
a_wr: assert property ( @(posedge clock) write |-> ready );
|
||||
endmodule
|
||||
|
||||
bind top top_properties properties_inst (.*);
|
Loading…
Add table
Add a link
Reference in a new issue