Cosmos/source2/Cosmos.Assembler.x86/ExternalLabel.cs
2012-01-23 22:52:12 +00:00

27 lines
No EOL
586 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Assembler.x86
{
public class ExternalLabel: Instruction
{
public ExternalLabel(string aName):base()
{
Name = aName;
}
public string Name
{
get;
set;
}
public override void WriteText( Cosmos.Assembler.Assembler aAssembler, System.IO.TextWriter aOutput )
{
aOutput.Write("extern ");
aOutput.Write(Name);
}
}
}