remove unused method
authorAdam Megacz <adam.megacz@sun.com>
Tue, 24 Mar 2009 18:13:36 +0000 (18:13 +0000)
committerAdam Megacz <adam.megacz@sun.com>
Tue, 24 Mar 2009 18:13:36 +0000 (18:13 +0000)
testCode/com/sun/vlsi/chips/marina/test/InstructionStopper.java

index 101301b..1090911 100644 (file)
@@ -19,18 +19,6 @@ import static com.sun.vlsi.chips.marina.test.Marina.INSTRUCTION_LENGTH;
  */
 public class InstructionStopper extends ProperStopper {
 
-    private String formatDecodedInstr(BitVector dta) {
-        BitVector instr = dta.get(0, INSTRUCTION_LENGTH).bitReverse(); 
-        StringBuffer sb = new StringBuffer();
-        String pred = instr.get(0, 6)  .getState();
-        String rq = instr.get(6, 1).getState();
-        String unused2 = instr.get(7, 2).getState();
-        String op = instr.get(9, 6).getState();
-        String tail = instr.get(15, 1).getState();
-        String rest = instr.get(16, 20).getState();
-                
-        return pred+" "+rq+" "+unused2+" "+op+" "+tail+" "+rest;
-    }
     public InstructionStopper(String propInst,
                               String controlChain, String dataChain,
                               String reportChain,