Examples of flattenDesign()


Examples of edu.byu.ece.rapidSmith.design.Design.flattenDesign()

  public static void main(String[] args) {
    if(args.length != 2){
      MessageGenerator.briefMessageAndExit("USAGE: <inputDesign.xdl> <flattenedDesign.xdl>");
    }
    Design d = new Design(args[0]);
    d.flattenDesign();
    d.saveXDLFile(args[1], true);
  }
}
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.