Help for this page

Select Code to Download


  1. or download this
        my ( $moduleName, $netName, @gateInst, $gate, $netCap,
             $violation, @maxTrans, $worstTrans, $line );
    
  2. or download this
    my $rpt = $drc::flag ? \%drc::rpt1 : \%drc::rpt2;
    $rpt->{$moduleName}{$netName}{$gate}{"Capacitance"} = $violation;
    
  3. or download this
    if ( $drc::file1[$i] =~ m/^\s*\Module:/i ) {
        $moduleName = getModuleName ( $drc::file1[$i] ) ;
    }
    # could become
     $moduleName = getModuleName ( $item )      if ( $item =~ m/^\s*\Modul
    +e:/i );