Files
EightBitNet/M6502/M6502.Symbols/Module.cs
2024-10-12 10:20:29 +01:00

11 lines
423 B
C#

namespace M6502.Symbols
{
// mod id=0,name="sudoku.o",file=0
[Section("mod", "Modules")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1716:Identifiers should not match keywords", Justification = "External file format")]
public sealed class Module(Parser container) : NamedSection(container)
{
[SectionReference("file")]
public File? File { get; private set; }
}
}