Cosmos/source/Indy.IL2CPU.Assembler/Label.cs
mterwoord_cp c09c0f2459
2007-08-30 17:33:25 +00:00

16 lines
327 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler {
public class Label: Instruction {
public readonly string Name;
public Label(string aName) {
Name = aName;
}
public override string ToString() {
return Name + ":";
}
}
}