mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +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; }
|
|
}
|
|
} |