Files
EightBitNet/M6502/M6502.Symbols/SectionReferenceAttribute.cs
2024-10-09 19:48:33 +01:00

8 lines
249 B
C#

namespace M6502.Symbols
{
[AttributeUsage(AttributeTargets.Property)]
internal sealed class SectionReferenceAttribute(string key, bool optional = false) : SectionPropertyAttribute(key, type: typeof(int), optional: optional)
{
}
}