Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.machine / src / net / mograsim / machine / isa / AsmOperand.java
1 package net.mograsim.machine.isa;
2
3 import net.mograsim.logic.core.types.BitVector;
4 import net.mograsim.machine.isa.types.AsmException;
5
6 public interface AsmOperand
7 {
8         int getSize();
9
10         BitVector parse(String s) throws AsmException;
11 }