Open tudortimi opened 8 years ago
The following property is asynchronous:
property amiq_apb_sel_validity_during_transfer_phases_p; @(posedge enable) disable iff(!reset_n || !en_protocol_checks) (|sel); endproperty
It's sensitive to glitches on enable. It should be rewritten as:
enable
property amiq_apb_sel_validity_during_transfer_phases_p; @(posedge clk) disable iff(!reset_n || !en_protocol_checks) (enable |-> |sel); endproperty
I would use: property amiq_apb_sel_validity_during_transfer_phases_p; @(posedge clk) disable iff(!reset_n || !en_protocol_checks) (!enable || |sel); endproperty
The following property is asynchronous:
It's sensitive to glitches on
enable
. It should be rewritten as: