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
15
tests/sva/basic05.sv
Normal file
15
tests/sva/basic05.sv
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue