Multiclock Assertion

Hi,

I want to write a assertion so that at a posedge of clock 1 check for negedge of signal a if this condition satisfied then at negedge of clock 2 signal b should be low for 2 clock Cycles.

If any condition failed assertion fails, can anyone help me to achieve this?

Thanks

Use this as a start. It is not correct
https://www.perplexity.ai/search/i-want-to-write-a-assertion-so-5BLZ.aIDTZSClYwweaSglg

My new book “Fast-Tracking SVA through Exposure”
AMZN Paper copy: LinkedIn
PDF: Fast-Tracking SVA through Exposure: Core Usage, Concepts, AI Integration - Payhip

See last request at
https://www.perplexity.ai/search/i-want-to-write-a-assertion-so-5BLZ.aIDTZSClYwweaSglg

property b_low_for_2_clk2_cycles_after_a_fall;
  @(posedge clk1)
    $fell(a) |=> 
      @(negedge clk2) (b == 0)[*2];
endproperty

assert property (b_low_for_2_clk2_cycles_after_a_fall)
  else $error("Multiclock assertion failed: b was not low for 2 negedge clk2 cycles after a fell at posedge clk1");