1
0
mirror of synced 2026-04-28 21:09:08 +00:00

Add some simple SVA test cases for future Verific work

This commit is contained in:
Clifford Wolf
2017-07-22 12:31:08 +02:00
parent 2785aaffeb
commit 024ba310ec
4 changed files with 45 additions and 0 deletions

16
tests/sva/basic02.sv Normal file
View File

@@ -0,0 +1,16 @@
module top (input logic clock, ctrl);
logic read = 0, write = 0, ready = 0;
always @(posedge clock) begin
read <= !ctrl;
write <= ctrl;
ready <= write;
end
endmodule
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 inst (.*);