Package edu.byu.ece.rapidSmith.design

Examples of edu.byu.ece.rapidSmith.design.Instance.place()


              HashMap<String, Attribute> attributeMap = new HashMap<String, Attribute>();
              attributeMap.put("_NO_USER_LOGIC", new Attribute("_NO_USER_LOGIC","",""));
             
              attributeMap.put(srcTypeString, new Attribute(srcTypeString,"",slicePin));
             
              returnMe.place(site);
              returnMe.setType(PrimitiveType.SLICEL);
              returnMe.setAttributes(attributeMap);
              returnMe.setName("XDL_DUMMY_" + returnMe.getTile() + "_" + site.getName());
              currStaticSourcePin = null;
              return returnMe;             
View Full Code Here


      }
    }
    // Add the instance (it doesn't exist yet)
    else{
      currInst = new Instance();
      currInst.place(router.dev.getPrimitiveSite("TIEOFF" + tileSuffix));
      currInst.setType(PrimitiveType.TIEOFF);
      currInst.setName(instName);
      currInst.addAttribute(noUserLogicAttr);
      if(net.getType().equals(NetType.VCC)){
        // Add HARD1
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.