Finished MPROM support. Fixes #10
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / MainMemoryDefinition.java
1 package net.mograsim.machine;
2
3 /**
4  * This interface provides a means to get information about the machines memory architecture. It is not bound to any actual memory.
5  *
6  * @author Christian Femers
7  *
8  */
9 public interface MainMemoryDefinition extends BitVectorMemoryDefinition
10 {
11         public static MainMemoryDefinition create(int memoryAddressBits, int cellWidth, long minimalAddress, long maximalAddress)
12         {
13                 return new StandardMainMemoryDefinition(memoryAddressBits, cellWidth, minimalAddress, maximalAddress);
14         }
15 }