Examples of SinkPin


Examples of edu.byu.ece.rapidSmith.device.SinkPin

  public SinkPin getSinkPin(){
    return tile.getSinkPin(wire);
  }
 
  public Node getSwitchBoxSink(Device dev){
    SinkPin sp = tile.getSinks().get(wire);
    int y = sp.switchMatrixTileOffset;
    int x = y >> 16;
    y = (y << 16) >> 16;
    Node n = new Node(dev.getTile(tile.getRow()+y, tile.getColumn()+x),sp.switchMatrixSinkWire,null,0);
    return n;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.