using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Cosmos.Compiler.XSharp.Nasm { public class Assembler { public List Data = new List(); public List Code = new List(); public static Assembler operator +(Assembler aThis, string aThat) { aThis.Code.Add(aThat); return aThis; } } }