3
0
Fork 0
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:
Clifford Wolf 2017-07-22 16:35:46 +02:00
parent 5be535517c
commit 84f15260b5
5 changed files with 74 additions and 1 deletions

15
tests/sva/basic05.sv Normal file
View file

@ -0,0 +1,15 @@
module top (input logic clock, ctrl);
logic read, write, ready;
demo uut (
.clock(clock),
.ctrl(ctrl)
);
assign read = uut.read;
assign write = uut.write;
assign ready = uut.ready;
a_rw: assert property ( @(posedge clock) !(read && write) );
a_wr: assert property ( @(posedge clock) write |-> ready );
endmodule