Assembler.Assembler.Assembler C# (CSharp) Méthode

Assembler() public méthode

public Assembler ( string source ) : System
source string
Résultat System
        public Assembler(string source)
        {
            AssemblyTokenizer tokenizer = new AssemblyTokenizer(source);
            tokenizer.Scan();

            tokens = tokenizer.Tokens;
            instructions = new List<Instruction>();
            labels = new Dictionary<string, Label>();

            Parse();
            Build();
        }