Exemple #1
0
        static void Main(string[] args)
        {
            if (args.Length > 0)
            {
                if (args[0] == "/c")
                {
                    Assembler a = new Assembler(args[2], args[3], File.ReadAllText(args[1]));
                    a.Assemble();
                    a.Save(args[4]);
                }
                else
                {
                    Assembler.PopulateByteCodes();

                    VM v = new VM();
                    v.LoadProgram(args[0]);
                    v.NewThread("Main");
                    v.Run(0);
                }
            }
            else if (Console.ReadLine() == "c")
            {
                Console.Write("File to compile: ");
                string filename = Console.ReadLine();
                Console.WriteLine("-------------------------");
                Console.Write("Application name: ");
                string Aname = Console.ReadLine();
                Console.Write("Author: ");
                string Aauth = Console.ReadLine();

                string code = File.ReadAllText(filename);

                Assembler a = new Assembler(Aname, Aauth, code);
                a.Assemble();
                a.Save(Aname + ".nxe");
            }
            else
            {
                Assembler.PopulateByteCodes();

                Console.Write("File to run: ");
                string Aname = Console.ReadLine();

                VM v = new VM();
                v.LoadProgram(Aname);
                v.NewThread("Main");
                v.Run(0);
            }
        }
Exemple #2
0
 public vThread(string Name, VM parent)
 {
     this.Name = Name;
     this.parent = parent;
     this.b = new Thread(new ThreadStart(Run));
     b.Name = Name;
     b.Priority = ThreadPriority.Normal;
     stack = new Stack<object>();
     callstack = new Stack<vCall>();
     globalvars = new Dictionary<string, object>();
     callargs = new object[0];
     instructionIndex = 0;
 }