Full printing for NES is overwhelming

This commit is contained in:
Matt Nadareski
2026-03-06 13:51:32 -05:00
parent 3f23df868f
commit 2d380770f5

View File

@@ -20,11 +20,16 @@ namespace SabreTools.Serialization.Wrappers
Print(builder, Model.Header);
builder.AppendLine(Model.Trainer, "Trainer Data");
builder.AppendLine(Model.PRGROMData, "PRG-ROM Data");
builder.AppendLine(Model.CHRROMData, "CHR-ROM Data");
builder.AppendLine(Model.PlayChoiceINSTROM, "PlayChoice INST-ROM Data");
builder.AppendLine(Model.PlayChoicePROM, "PlayChoice PROM Data");
//builder.AppendLine(Model.Trainer, "Trainer Data");
builder.AppendLine(Model.Trainer.Length, "Trainer Data Length");
//builder.AppendLine(Model.PRGROMData, "PRG-ROM Data");
builder.AppendLine(Model.PRGROMData.Length, "PRG-ROM Data Length");
//builder.AppendLine(Model.CHRROMData, "CHR-ROM Data");
builder.AppendLine(Model.CHRROMData.Length, "CHR-ROM Data Length");
//builder.AppendLine(Model.PlayChoiceINSTROM, "PlayChoice INST-ROM Data");
builder.AppendLine(Model.PlayChoiceINSTROM.Length, "PlayChoice INST-ROM Data Length");
//builder.AppendLine(Model.PlayChoicePROM, "PlayChoice PROM Data");
builder.AppendLine(Model.PlayChoicePROM.Length, "PlayChoice PROM Data Length");
builder.AppendLine(Model.Title, "Title:");
}