temporary hack to test 3012 to help illustrate problem
authorAdam Megacz <adam.megacz@sun.com>
Sun, 23 Nov 2008 20:11:57 +0000 (20:11 +0000)
committerAdam Megacz <adam.megacz@sun.com>
Sun, 23 Nov 2008 20:11:57 +0000 (20:11 +0000)
testCode/com/sun/vlsi/chips/marina/test/MarinaTest.java

index cf0bb4a..a766cb5 100644 (file)
@@ -1233,12 +1233,17 @@ public class MarinaTest {
         for(boolean dc : new boolean[] { false, true }) {
             for(boolean c_flag : new boolean[] { true, false, true }) {
 
+                prln("");
                 prln("****** checking case where dc="+dc+", cflag="+c_flag);
                 BitVector data = new BitVector(37, "empty");
                 BitVector addr = new BitVector(14, "empty");
                 for(int i=0; i<data.getNumBits(); i++) data.set(i, false);
                 for(int i=0; i<addr.getNumBits(); i++) addr.set(i, false);
 
+                // FIXME: temporary modification to make
+                // troublshooting easier; this will be removed
+                for(int i=0; i<addr.getNumBits(); i++) addr.set(i, c_flag);
+
                 int whichbit = dc ? 0 : 13;
                 prln("setting addr["+whichbit+"] to "+(c_flag?"1":"0"));
                 addr.set(whichbit, c_flag);