Cosmos/source2/IL2PCU/Cosmos.IL2CPU/Assembler/DataEndIfDefined.cs
kudzu_cp f2a316000a
2009-09-07 13:01:39 +00:00

18 lines
No EOL
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU
{
public class DataEndIfDefined: DataMember, IEndIfDefined {
public DataEndIfDefined()
: base("define", new byte[0]) {
}
public override void WriteText(Assembler aAssembler, System.IO.TextWriter aOutput)
{
aOutput.Write(this.GetAsText());
}
}
}