public string Interpret(string code)
        {
            assemblyCode    = new AssemblyCode(code);
            labelManager    = new LabelManager();
            variableManager = new VariableManager();

            instructions = new List <Instruction>();
            GetVariables();
            GetLabels();
            ProcessCode();
            return(null);
        }
        public string Interpret(string code)
        {
            assemblyCode = new AssemblyCode(code);
            labelManager = new LabelManager();
            variableManager = new VariableManager();

            instructions = new List<Instruction>();
            GetVariables();
            GetLabels();
            ProcessCode();
            return null;
        }