Finished MPROM support. Fixes #10
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / MainMemory.java
index 33ad260..9a0b898 100644 (file)
@@ -1,15 +1,7 @@
 package net.mograsim.machine;
 
-import java.math.BigInteger;
-
-import net.mograsim.logic.core.types.BitVector;
-
-public interface MainMemory extends Memory<BitVector>
+public interface MainMemory extends BitVectorMemory
 {
-       public BigInteger getCellAsBigInteger(long address);
-
-       public void setCellAsBigInteger(long address, BigInteger word);
-
        @Override
        public MainMemoryDefinition getDefinition();
 }
\ No newline at end of file