• 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. Quickly schematic-viewing a gates file

Stats

  • Locked Locked
  • Replies 5
  • Subscribers 65
  • Views 16979
  • 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

Quickly schematic-viewing a gates file

Almendrico
Almendrico over 9 years ago

Hi all,

I wonder whether it is possible to quickly open an schematic viewer to display a digital gates file

Given I have a .vg (or .v) file and a verilog gates libraries, is there any quick way to open an schematic browser via the command shell ? My only option at the moment is to call simvision and then, once there, send the design to the schematic viewer... Is there something faster, something like below:

$: simvision myfile.vg -y mylibs/tsmc18


Any comments welcome

Thanks

  • Cancel
Parents
  • Doug Koslow
    Doug Koslow over 8 years ago

    In addition to the approach using a layout, one could write a script that passes the top module of the design to the schematic and fills it.  Content of the "schematic_fill.tcl" script is below.

    You would invoke it like:

    irun myfile.vg -y mylibs/tsmc18 -simvisargs "-schematic -input schematic_fill.tcl" +gui -s -access +rwc -createdebugdb

    schematic_fill.tcl:

    # Get the current design, add it to the schematic, and fill it.
    array set info [simcontrol info]
    set scope [lindex [split $info(Design) ":."] 1]

    # Attempt to select it.
    select set -type scope $scope

    # Check if we have something selected.
    if {[select get -type scope] == ""} {
        # Nothing selected. Try selecting ":" scope for VHDL.
        set scope ":"
        select set -type scope $scope
        if {[select get -type scope] == ""} {
            error "Unable to extract top level scope from design."
        }
    }

    # Add the selected scope to the schematic
    schematic add -selected

    # Fill the scope
    schematic invoke Edit>FillModules

    Please give this a try.

    Thanks.

    - Doug

    myfile.vg -y mylibs/tsmc18
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Doug Koslow
    Doug Koslow over 8 years ago

    In addition to the approach using a layout, one could write a script that passes the top module of the design to the schematic and fills it.  Content of the "schematic_fill.tcl" script is below.

    You would invoke it like:

    irun myfile.vg -y mylibs/tsmc18 -simvisargs "-schematic -input schematic_fill.tcl" +gui -s -access +rwc -createdebugdb

    schematic_fill.tcl:

    # Get the current design, add it to the schematic, and fill it.
    array set info [simcontrol info]
    set scope [lindex [split $info(Design) ":."] 1]

    # Attempt to select it.
    select set -type scope $scope

    # Check if we have something selected.
    if {[select get -type scope] == ""} {
        # Nothing selected. Try selecting ":" scope for VHDL.
        set scope ":"
        select set -type scope $scope
        if {[select get -type scope] == ""} {
            error "Unable to extract top level scope from design."
        }
    }

    # Add the selected scope to the schematic
    schematic add -selected

    # Fill the scope
    schematic invoke Edit>FillModules

    Please give this a try.

    Thanks.

    - Doug

    myfile.vg -y mylibs/tsmc18
    • 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