page 378 shows: The following example shows a combination of differently clocked properties using both implication andboolean property operators: @(posedge clk0) s0 |=> (@(posedge clk1) s1) and (@(posedge clk2) s2) The sequence "(@(posedge clk1) s1) and (@(posedge clk2) s2)" is illegal per Page 377: Differently clocked or multiclocked sequence operands cannot be combined with any sequence operators other than ##1 and ##0. For example, if clk1 and clk2 are not identical, then the following are illegal: @(posedge clk1) s1 ##2 @(posedge clk2) s2 @(posedge clk1) s1 intersect @(posedge clk2) s2 I suggest that the example be changed to: @(posedge clk0) s0 |=> (@(posedge clk1) s1) ##1 (@(posedge clk2) s2) -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.Received on Thu Mar 5 20:20:54 2009
This archive was generated by hypermail 2.1.8 : Thu Mar 05 2009 - 20:21:56 PST