How to use event in SystemVerilog

Source: Internet
Author: User

The event is a static object, triggered by the "-and" operator, and the process always waits for an "@" operator to be triggered. The "@" operator is edge sensitive.

Initial begin
$display ("@%0t:1: Before Trigger", $time);
->e1;
@e2;

$display ("@%0t:1: After Trigger", $time);
End

Initial begin
$display ("@%0t:2: Before Trigger", $time);
->e2;
@e1;

$display ("@%0t:2: After Trigger", $time);
End

Output Result:

# @ 0:1: Before trigger
# @ 0:2: Before trigger
# @ 0:1: After trigger

Cause:->e1 is a 0 pulse, the second thread will miss and be locked

Use Wait (. triggered ());

Initial begin
$display ("@%0t:1: Before Trigger", $time);
->e1;
Wait (e2.triggered ());
$display ("@%0t:1: After Trigger", $time);
End

Initial begin
$display ("@%0t:2: Before Trigger", $time);
->e2;
Wait (e1.triggered ());
$display ("@%0t:2: After Trigger", $time);
End

Results:

# @ 0:1: Before trigger
# @ 0:2: Before trigger
# @ 0:2: After trigger
# @ 0:1: After trigger

Reason: Wait () is level sensitive

How to use event in SystemVerilog

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.