• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Functional Verification
  3. Whats new in IUS5.83 systemverilog support ? when will it...

Stats

  • Locked Locked
  • Replies 11
  • Subscribers 64
  • Views 17483
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Whats new in IUS5.83 systemverilog support ? when will it be released ?

archive
archive over 18 years ago

I just started to experiment with ncsim 5.7 +systemverilog  and I'm very disappointed with the current support.. I tried running AVM examples and was not able to execute even the simple ones with ncsim.. I'm really curious to know if the next release will be supporting parametrized mailboxes and queues supporting complex data types..

Also how does URM compare to AVM or VMM ?


Originally posted in cdnusers.org by mirzani
  • Cancel
Parents
  • archive
    archive over 18 years ago

    The mailbox_tb.v file in your attachment did not compile, complaining about the type being passed in for the 'ref mb_item' argument to the get call for the mailbox.  I fixed it with the following changes (supplied as a patch:

    ===================================================================
    --- mailbox.orig/mailbox_tb.v 2007-01-30 15:55:03.016816041 -0600
    +++ mailbox/mailbox_tb.v 2007-01-30 15:59:46.213602366 -0600
    @@ -61,8 +61,10 @@


    initial begin
    + mb_item base_pkt;
    for (int i = 0; i<7;i++) begin
    - mb1.get(get_pkt);
    + mb1.get(base_pkt);
    + $cast(get_pkt, base_pkt);
    $display("GET mb_item %0d: \n pkt: %0d", get_pkt, get_pkt.pkt);
    $display("GET: current mailbox item: head-> %0d, trail-> %0d", get_pkt.pkt.head, get_pkt.pkt.trail);
    end


    Originally posted in cdnusers.org by bparsons
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • archive
    archive over 18 years ago

    The mailbox_tb.v file in your attachment did not compile, complaining about the type being passed in for the 'ref mb_item' argument to the get call for the mailbox.  I fixed it with the following changes (supplied as a patch:

    ===================================================================
    --- mailbox.orig/mailbox_tb.v 2007-01-30 15:55:03.016816041 -0600
    +++ mailbox/mailbox_tb.v 2007-01-30 15:59:46.213602366 -0600
    @@ -61,8 +61,10 @@


    initial begin
    + mb_item base_pkt;
    for (int i = 0; i<7;i++) begin
    - mb1.get(get_pkt);
    + mb1.get(base_pkt);
    + $cast(get_pkt, base_pkt);
    $display("GET mb_item %0d: \n pkt: %0d", get_pkt, get_pkt.pkt);
    $display("GET: current mailbox item: head-> %0d, trail-> %0d", get_pkt.pkt.head, get_pkt.pkt.trail);
    end


    Originally posted in cdnusers.org by bparsons
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information