Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by QuyVo

  1. Q

    SCRIPT Find out all the logical drivers of a pin of any standard cell in the netlist?

    Thanks ThisIsNotSam. And as I listed above outputs='Q Z ZN Y', whether I lack any output pin name for general.
  2. Q

    SCRIPT Find out all the logical drivers of a pin of any standard cell in the netlist?

    Thank Klaus and special thanks to ThisIsNotSam. I coded a small script for my issue: #!/bin/bash cell=$1 pin=$2 netlist=$3 outputs='Q Z ZN Y' echo "All logica drivers of pin "$pin" of standard cell "$cell" in the netlist "$netlist":" lnets=`cat $netlist | grep " $cell" | sed 's/.*'$pin'(//' |...
  3. Q

    SCRIPT Find out all the logical drivers of a pin of any standard cell in the netlist?

    Thanks, but how to specify which pin is a driver or a load? in the tool, we have an attribute "direction" in or out to define load or driver. But here, our input is netlist.
  4. Q

    SCRIPT Find out all the logical drivers of a pin of any standard cell in the netlist?

    Hello, As the title, do you have any idea for the problem: "Given a netlist, write a code/pseudo code for finding all the logical drivers of a pin of any standard cell in the netlist". It's easy to get all the logical drivers from design by tcl in tool. But in netlist, I have no idea...

Part and Inventory Search

Back
Top