Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ExternalLabel.cs
kudzu_cp a58ad95c10
2014-07-14 15:56:02 +00:00

27 lines
No EOL
620 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);
// }
//}
}