Cosmos/source/Cosmos.IL2CPU.API/Attribs/AsmLabel.cs

15 lines
357 B
C#

using System;
namespace Cosmos.IL2CPU.API.Attribs
{
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Field, AllowMultiple = true)]
public class AsmLabel : Attribute
{
public string Label { get; }
public AsmLabel(string aLabel)
{
Label = aLabel;
}
}
}