Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.machine / src / net / mograsim / machine / standard / memory / WordAddressableMemory.java
index 3dddc2e..4a54ad9 100644 (file)
@@ -26,7 +26,7 @@ public class WordAddressableMemory extends GenericMemory<BitVector> implements M
                BitVector data = super.getCell(address);
                return data == null ? BitVector.of(Bit.ZERO, cellWidth) : data;
        }
-       
+
        @Override
        public BigInteger getCellAsBigInteger(long address)
        {