From: Adam Megacz Date: Fri, 6 Mar 2009 03:02:18 +0000 (+0000) Subject: add a call to shiftReport(true,false) at top of ProperStopper.getStopped() X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=433ceddaa7030aa5d1f14d589cacd07cbcb123b6;p=fleet.git add a call to shiftReport(true,false) at top of ProperStopper.getStopped() --- diff --git a/testCode/com/sun/vlsi/chips/marina/test/ProperStopper.java b/testCode/com/sun/vlsi/chips/marina/test/ProperStopper.java index ac007e5..80d32df 100644 --- a/testCode/com/sun/vlsi/chips/marina/test/ProperStopper.java +++ b/testCode/com/sun/vlsi/chips/marina/test/ProperStopper.java @@ -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();