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

10 lines
272 B
C#

namespace M6502.Symbols
{
// type id = 0, val = "800920"
[Section("type", "Types")]
public sealed class Type(Parser container) : IdentifiableSection(container)
{
[SectionProperty("val")]
public string? Value { get; private set; }
}
}