change igor/archsim to fleetsim
authoradam <adam@megacz.com>
Mon, 12 Feb 2007 15:51:23 +0000 (16:51 +0100)
committeradam <adam@megacz.com>
Mon, 12 Feb 2007 15:51:23 +0000 (16:51 +0100)
ships/Alu1.ship
ships/Alu2.ship
ships/Debug.ship
ships/Dscratch.ship
ships/Execute.ship
ships/Fifo.ship
ships/Halt.ship
ships/Iscratch.ship
ships/Lut.ship
ships/Shift.ship
src/edu/berkeley/fleet/Main.java

index 7f487c2..a16ffd8 100644 (file)
@@ -30,7 +30,7 @@ data  out:  out
 */
     }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 == FPGA ==============================================================
 `include "macros.v"
 
index 1c567c9..4e12ea5 100644 (file)
@@ -42,7 +42,7 @@ public void service() {
   }
 }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 
 == FPGA ==============================================================
 `include "macros.v"
index 842059c..590394b 100644 (file)
@@ -13,7 +13,7 @@ public void service() {
     ((Interpreter)getFleet()).debug(box_in.removeDataForShip());
 }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 
 == FPGA ==============================================================
 `include "macros.v"
index d82de3d..30d0396 100644 (file)
@@ -35,7 +35,7 @@ token out:   outWriteDone
         }
     }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 
 == FPGA ==============================================================
 `include "macros.v"
index a50b463..4fe66a4 100644 (file)
@@ -10,7 +10,7 @@ data  in:   in
         //throw new Error("the Execute ship is only for FPGA simulations");
     }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 == FPGA ==============================================================
 `include "macros.v"
 
index f4d8ea1..ff674a4 100644 (file)
@@ -17,7 +17,7 @@ data  out:  out
         }
     }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 == FPGA ==============================================================
 `include "macros.v"
 
index 5e0c9df..b5cef92 100644 (file)
@@ -15,7 +15,7 @@ public void service() {
   Log.println(Log.yellow("    HALT: ====== halt ship got a token; halting the fleet ======"));
 }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 
 == FPGA ==============================================================
 // not implemented FIXME
index 99549ea..4d89911 100644 (file)
@@ -67,7 +67,7 @@ data  in:    inCBD
 
 == Constants ========================================================
 == TeX ==============================================================
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 == FPGA ==============================================================
 `include "macros.v"
 `define BRAM_ADDR_WIDTH 14
index 91489d7..f33c43e 100644 (file)
@@ -24,7 +24,7 @@ data  out:  out
         }
     }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 == FPGA ==============================================================
 // not implemented FIXME
 
index 6476ab1..a2f6655 100644 (file)
@@ -18,7 +18,7 @@ data out: out
         }
     }
 
-== ArchSim ==============================================================
+== FleetSim ==============================================================
 == FPGA ==============================================================
 // not implemented FIXME!
 
index ceee8d5..7381036 100644 (file)
@@ -35,7 +35,7 @@ public class Main {
         Fleet fleet;
         if ("fpga".equals(target)) {
             fleet = new Slipway();
-        } else if ("igor".equals(target)) {
+        } else if ("sim".equals(target) || "fleetsim".equals(target)) {
             fleet = (Fleet)Class.forName("com.sunlabs.fleetsim.fleet.FleetDescription").newInstance();
         } else {
             fleet = new Interpreter.DynamicInterpreter();
@@ -147,7 +147,7 @@ public class Main {
         System.err.println("usage:  java -jar fleet.jar [options] [command] [filename] [args]");
         System.err.println("");
         System.err.println("[options] is in the form key=val; supported keys are:");
-        System.err.println("   target={igor,fpga,interp}");
+        System.err.println("   target={sim,fpga,interp}");
         System.err.println("   bitfile=(hardware image for fpga)");
         System.err.println("   verbose={yes,no}");
         System.err.println("");