mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-23 07:20:02 +00:00
10 lines
272 B
C#
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; }
|
|
}
|
|
} |