示例#1
0
 public void compile(Compilator c)
 {
     _operations = c.compile(Code, Stack);
     Pc.Pc = GoToNextInst();
 }
示例#2
0
        Stack _s; // pile

        #endregion Fields

        #region Constructors

        // initialisation
        public Controleur()
        {
            _pc = 0;
            _s = new Stack();
            _compilator = new Compilator();
        }