mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-23 07:14:57 +00:00
Full printing for NES is overwhelming
This commit is contained in:
@@ -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:");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user