add a call to shiftReport(true,false) at top of ProperStopper.getStopped()
authorAdam Megacz <adam.megacz@sun.com>
Fri, 6 Mar 2009 03:02:18 +0000 (03:02 +0000)
committerAdam Megacz <adam.megacz@sun.com>
Fri, 6 Mar 2009 03:02:18 +0000 (03:02 +0000)
testCode/com/sun/vlsi/chips/marina/test/ProperStopper.java

index ac007e5..80d32df 100644 (file)
@@ -186,7 +186,8 @@ public class ProperStopper {
     }
     /** get value of drain stage stopped wire */
     public boolean getStopped() {
-       return cc.getOutBits(reportPath).get(STOPPED_IN_NDX);
+       shiftReport(true, false);
+        return cc.getOutBits(reportPath).get(STOPPED_IN_NDX);
     }
     public String getReportString() {
        StringBuffer sb = new StringBuffer();