Cosmos/source2/Compiler/Cosmos.XSharp/Nasm/Assembler.cs
2012-07-12 05:41:27 +00:00

16 lines
409 B
C#

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