Organized imports + cleaned MANIFEST.MF
[Mograsim.git] / net.mograsim.logic.core / src / net / mograsim / logic / core / types / BitVectorFormatter.java
index 67a2730..5fd1e2c 100644 (file)
@@ -2,8 +2,8 @@ package net.mograsim.logic.core.types;
 
 import net.mograsim.logic.core.wires.Wire.ReadEnd;
 import net.mograsim.preferences.ColorDefinition;
-import net.mograsim.preferences.Preferences;
 import net.mograsim.preferences.ColorDefinition.BuiltInColor;
+import net.mograsim.preferences.Preferences;
 
 public class BitVectorFormatter
 {
@@ -16,7 +16,7 @@ public class BitVectorFormatter
        {
                if (bitVector == null)
                        return "null";
-               return bitVector.toString();
+               return bitVector.toBitStringMSBFirst();
        }
 
        // TODO doesn't this belong to logic.ui?