Ejemplo n.º 1
0
 public AssemblerController(string[] s)
 {
     instructions = s;
     instMatrix   = new InstMatrix(s.Length);
     SC           = new SplitterClass(this.instMatrix);
     Free         = false;
 }
Ejemplo n.º 2
0
 public void Split()
 {
     if (!Free)
     {
         this.instMatrix = SC.FixedFormat(instructions);
     }
 }
Ejemplo n.º 3
0
 public SplitterClass(InstMatrix m)
 {
     this.M = m;
 }