antwens Posted January 11, 2014 Report Share Posted January 11, 2014 a simple question on wait, in driver run task, want to wait for item.delay clock cycles before moving on, may I know below ways are both good, repeat(<item>.delay) @ (posedge clk) assert <signal> or ## (item.delay) thanks Quote Link to comment Share on other sites More sharing options...
dave_59 Posted January 11, 2014 Report Share Posted January 11, 2014 Assuming your driver is a class inside a package, and the default clocking block is in an interface, you cannot use ## delays - you must use repeat(item.delay) @(posedge clk). ## only uses the default clocking from the module/interface it's used from, making it a fairly useless construct. And there is absolutely no performance difference between the two. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.