disable traceFill/traceDrain
authorAdam Megacz <adam.megacz@sun.com>
Fri, 24 Apr 2009 01:13:05 +0000 (01:13 +0000)
committerAdam Megacz <adam.megacz@sun.com>
Fri, 24 Apr 2009 01:13:05 +0000 (01:13 +0000)
testCode/com/sun/vlsi/chips/marina/test/ProperStopper.java

index 5adeee8..4d21c86 100644 (file)
@@ -32,8 +32,12 @@ public class ProperStopper {
     private final boolean clockHack;
     private final String captureClockName = "si[4]";
 
+    /*
     private boolean traceFill = true;
     private boolean traceDrain = true;
+    */
+    private boolean traceFill = false;
+    private boolean traceDrain = false;
         
     private final String controlChain, controlPath, 
         dataChain, dataPath, 
@@ -63,9 +67,12 @@ public class ProperStopper {
     }
   
     private void shiftControl(boolean readEnable, boolean writeEnable) {
+        //System.out.println("start shiftcontrol");
         cc.shift(controlChain, readEnable, writeEnable);
+        //System.out.println("  end shiftcontrol");
     }
     private void shiftData(boolean readEnable, boolean writeEnable) {
+        //System.out.println("start shiftdata");
         cc.shift(dataChain, readEnable, writeEnable);
         if (writeEnable) {
             if (clockHack && model instanceof NanosimModel) {
@@ -80,9 +87,12 @@ public class ProperStopper {
                 nanoModel.setNodeState(captureClock, 0);
             }
         }
+        //System.out.println("  end shiftdata");
     }
     private void shiftReport(boolean readEnable, boolean writeEnable) {
+        //System.out.println("start shiftreport");
         cc.shift(reportChain, readEnable, writeEnable);
+        //System.out.println("  end shiftreport");
     }
 
     private StateWireState boolToState(boolean b) {