Finished MPROM support. Fixes #10
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / BitVectorMemoryDefinition.java
1 package net.mograsim.machine;
2
3 public interface BitVectorMemoryDefinition extends MemoryDefinition
4 {
5
6         /**
7          * The width in bits of an addressable memory cell/unit. This is often 8 (= one byte). The actual cells/lines of the memory may be a lot
8          * larger.
9          * 
10          * @return the addressable unit width in bits
11          * @author Christian Femers
12          */
13         int getCellWidth();
14 }