From 433ceddaa7030aa5d1f14d589cacd07cbcb123b6 Mon Sep 17 00:00:00 2001 From: Adam Megacz Date: Fri, 6 Mar 2009 03:02:18 +0000 Subject: [PATCH] add a call to shiftReport(true,false) at top of ProperStopper.getStopped() --- testCode/com/sun/vlsi/chips/marina/test/ProperStopper.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); -- 1.7.10.4