add MarinaPacket.null_word
authorAdam Megacz <adam.megacz@sun.com>
Fri, 24 Apr 2009 01:13:23 +0000 (01:13 +0000)
committerAdam Megacz <adam.megacz@sun.com>
Fri, 24 Apr 2009 01:13:23 +0000 (01:13 +0000)
testCode/com/sun/vlsi/chips/marina/test/MarinaPacket.java

index aaf93ab..b14ef86 100644 (file)
@@ -28,8 +28,10 @@ public class MarinaPacket {
     private final boolean is_instruction;
 
     public static final BitVector null_path = new BitVector(PATH_WIDTH, "null_path");
+    public static final BitVector null_word = new BitVector(WORD_WIDTH, "null_word");
     static {
         null_path.set(0, PATH_WIDTH, false);
+        null_word.set(0, WORD_WIDTH, false);
     }
 
     /** "parse" a token from the raw bits in the north proper stopper */