From c630fee7e05ebf00edf670062997ce1fcf7ed9a3 Mon Sep 17 00:00:00 2001 From: gero_cp Date: Sun, 6 Sep 2009 16:59:57 +0000 Subject: [PATCH] --- source2/Users/Kudzu/HelloWorld/Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source2/Users/Kudzu/HelloWorld/Program.cs b/source2/Users/Kudzu/HelloWorld/Program.cs index e20d56587..b16d14a53 100644 --- a/source2/Users/Kudzu/HelloWorld/Program.cs +++ b/source2/Users/Kudzu/HelloWorld/Program.cs @@ -15,7 +15,7 @@ namespace HelloWorld { //Indy.IL2CPU.Engine.Execute() // which is called from Builder.RunEngine() - using (var xOldAsmblr = new CosmosAssembler(0)) { + //using (var xOldAsmblr = new AssemblerNasm()) { //TODO: Move new build logic into "new sort". // Build stuff is all UI, launching QEMU, making ISO etc. // IL2CPU should only contain scanning and assembling of binary files @@ -28,9 +28,9 @@ namespace HelloWorld { var xPath = Path.GetDirectoryName(typeof(Program).Assembly.Location); xPath = Path.Combine(xPath, @"..\..\Output.asm"); using (var xOut = File.CreateText(xPath)) { - xOldAsmblr.FlushText(xOut); + xAsmblr.FlushText( xOut ); } - } + //} } //#endregion