remove unused code in Marina tests
[fleet.git] / src / edu / berkeley / fleet / marina / CmdArgs.java
index 873abfc..5b4bc33 100644 (file)
@@ -20,7 +20,6 @@ public class CmdArgs {
     public boolean useVerilog = false;
     public boolean useHsim = false;
     public boolean silicon = false;
-    public Station station=Station.ONE;
     public float vdd, temp;
     public boolean init;
 
@@ -40,7 +39,6 @@ public class CmdArgs {
         System.out.println("         -jtagShift                simulate shifting of JTAG chains");
         System.out.println("         -silicon                  test the silicon");
         System.out.println("         -chipNum <int>            store test results according to chip number");
-        System.out.println("         -station <int>            select test station");
         System.exit(-1);
     }
 
@@ -67,14 +65,6 @@ public class CmdArgs {
                 i++;
                 if (i>=nbArgs) usage();
                 chipNum = Integer.parseInt(args[i]); 
-            } else if (args[i].equals("-station")) {
-                i++;
-                if (i>=nbArgs) usage();
-                switch (Integer.parseInt(args[i])) {
-                    case 1: station = Station.ONE; break; 
-                    case 2: station = Station.TWO; break;
-                    default: System.out.println("Bad station: "+args[i]); usage();
-                }
             } else if (args[i].equals("-chipSch")) {
                 mode = CmdArgs.Mode.WHOLE_CHIP_SCHEMATIC_PARASITICS;
             } else if (args[i].equals("-chipLay")) {