Пример #1
0
 public AssemblerController(string[] s)
 {
     instructions = s;
     instMatrix   = new InstMatrix(s.Length);
     SC           = new SplitterClass(this.instMatrix);
     Free         = false;
 }
Пример #2
0
 public void Split()
 {
     if (!Free)
     {
         this.instMatrix = SC.FixedFormat(instructions);
     }
 }
Пример #3
0
 public SplitterClass(InstMatrix m)
 {
     this.M = m;
 }