mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-11 03:33:36 +00:00
7 lines
243 B
Systemverilog
7 lines
243 B
Systemverilog
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 (.*);
|