Fixed some bugs preventing Am2900 from working in Eclipse
[Mograsim.git] / net.mograsim.machine / src / net / mograsim / machine / mi / MicroInstruction.java
index 92e33eb..ec1efa0 100644 (file)
@@ -26,7 +26,7 @@ public interface MicroInstruction
                BitVector vector = BitVector.of();
                int size = getSize();
                for (int i = 0; i < size; i++)
-                       vector.concat(getParameter(i).getValue());
+                       vector = vector.concat(getParameter(i).getValue());
                return vector;
        }
 }