This commit is contained in:
nub31
2025-05-04 20:52:24 +02:00
parent 6755342cdb
commit 2e7249fc87
10 changed files with 123 additions and 83 deletions

View File

@@ -50,7 +50,8 @@ internal static class Program
var generator = new Generator(definitions);
var asm = generator.Generate();
File.WriteAllText(output, asm);
// File.WriteAllText(output, asm);
Console.WriteLine(asm);
return 0;
}