Defined Interfaces regarding MicroInstructions
[Mograsim.git] / net.mograsim.machine / src / net / mograsim / machine / MicroInstruction.java
1 package net.mograsim.machine;
2
3 import net.mograsim.machine.mnemonics.Mnemonic;
4
5 public interface MicroInstruction {
6         
7         public Mnemonic getValue(int index);
8         
9         /**
10          * @return The amount of {@link Mnemonic}s, the instruction is composed of
11          */
12         public int getSize();
13 }