using System; using System.Collections.Generic; using System.Linq; using System.Text; using Lost.JIT.AMD64; using System.IO; //using Cosmos.Build.Windows; namespace Lost { class LostTest { [STAThread] static void Main(string[] args) { using (var source = new StreamReader(args[0])) { string srcLine; while ((srcLine = source.ReadLine()) != null) { var op = ProcessorInstruction.Parse(srcLine); Console.WriteLine(op); } } Console.ReadKey(); } } }