change method order in Fpga.java (inert)
authoradam <adam@megacz.com>
Mon, 3 Nov 2008 09:53:09 +0000 (10:53 +0100)
committeradam <adam@megacz.com>
Mon, 3 Nov 2008 09:53:09 +0000 (10:53 +0100)
src/edu/berkeley/fleet/fpga/Fpga.java

index 7566cee..fa66095 100644 (file)
@@ -45,6 +45,8 @@ public class Fpga extends FleetTwoFleet {
         new Fpga(new Module("root")).top.dump(s[0]);
     }
 
+    public Module getVerilogModule() { return top; }
+
     public FleetProcess run(Instruction[] instructions) {
         try {
             return new Client(this, "none", instructions);
@@ -192,8 +194,6 @@ public class Fpga extends FleetTwoFleet {
         }
     }
 
-    public Module getVerilogModule() { return top; }
-
 
     // Expand //////////////////////////////////////////////////////////////////////////////