Wednesday, January 07, 2009     Register | Login | Search | Contact Us
     

Many of you already received communications about the move of the Cadence user community into cadence.com. And many of you have already joined, with over 4000 registrations in the first two weeks.

The new Cadence Community enhances the ability of Cadence users to connect and collaborate. In addition to moving the community into cadence.com -- enabling single sign-on for community, Sourcelink and Cadence events -- the new site is organized around nine technology segments, giving you easy access to product information, training, forums and blogs. Some of the new features include:
  • Ability to respond to posts via e-mail
  • Technology-specific blogs
  • Latest Web 2.0 social networking capabilities
  • Public profile options
  • Private messaging
  • Friends lists
Visit the new Cadence Community today at www.cadence.com/community and join the discussions!

Registration note: Due to the scope of the enhancements and the new SSO registration system, we were not able to migrate existing cdnusers.org member accounts. So new registrations are required, but this enables a broader set of functionality we think you'll enjoy.

Forum note: Under the guidance of forum moderators, we have taken the 20+ cdnusers.org forums and consolidated them into 11 forums on the new site. Posts have been brought over so you can leverage that posting history. CDNusers forums will be set to read only starting 7/30, and cdnusers.org will be redirected to the new community on 8/4.

Best regards,
Mike and Tom

Michael A. Catrambone - Steering Committee Chairman
Distinguished Engineer
PCB/Mechanical
UTStarcom, Inc.

Tom Diederich
Cadence Community Manager
Home
Forums
Subject: How to handle assign statements
Posting to forums is available to community members only.
Login or Register
Rate this topic:
   
Author Messages
gukumar
Posts: 5
Online: User is Offline
7/26/2007 11:05 PM  
In our design, we have few signals which need to be tied to 1'b0, 1'b1, as shown below.

    assign z⎜] = 1'b0 ;
    assign port_compΎ] = 1'b1;

During PD, I want to tie these nets to VDD and GND nets. Can somebody help on how to do this?

Thanks in Advance,
Krishna
Stalker
Posts: 24
Online: User is Offline
7/27/2007 12:15 AM  
Try adding tie cells before writing verilog.
If you work with RTL - Compiler it looks like:
remove_assigns
insert_tiehilo_cells

Maxim R.
gukumar
Posts: 5
Online: User is Offline
7/27/2007 12:36 AM  
Hi Stalker,

The ASIC vendors that we are dealing with do not have TieHi/TieLo cells in their library. So we need to connect these nets directly to vdd/gnd. Is there a way to do this, either in SoCE or RTL-C.

Thanks;
Krishna
Stalker
Posts: 24
Online: User is Offline
7/27/2007 1:06 AM  
I never connected cells directly to the grid.
As far as I know LVS tools recognize 1'b0/1'b1 as vss/vdd

Maxim R.
gukumar
Posts: 5
Online: User is Offline
7/27/2007 1:08 AM  
so can we leave the nets floating. i thought there is a way to connect all 1'b0 to gnd and 1'b1 to vdd.
Kari
Posts: 81
Online: User is Offline
8/01/2007 10:39 AM  
Hi Krishna,

Make sure you have the following in your .conf file before loading the design: (NOTE this is an example; make sure to use your specific pwr/gnd net names and std cell pin names. These are usually VDD/VSS, but can be different.)

set rda_Input(ui_pg_connections) [list \
{PIN:VDD:} \
{PIN:VSS:} \
{TIEHI::} \
{TIELO::} \
]
set rda_Input(PIN:VDD:) {VDD}
set rda_Input(PIN:VSS:) {VSS}
set rda_Input(TIEHI::) {VDD}
set rda_Input(TIELO::) {VSS}

This should setup tiehi/lo nets and nanoroute should connect them.

Hope that helps,

- Kari
gukumar
Posts: 5
Online: User is Offline
8/01/2007 3:10 PM  
Thanks Kari. It worked.
Kari
Posts: 81
Online: User is Offline
8/06/2007 11:46 AM  
You're welcome, Krishna. I'm glad that worked for you.

- Kari
Posting to forums is available to community members only.
Login or Register

Forums > Digital IC > Floorplanning, Place and route > How to handle assign statements


ActiveForums 3.6
     
Copyright 2006 Cadence Design Systems, Inc.