public JSectionInfo(string name, int subsection, bool isCode, FileAddress ram) { Name = name; Subsection = subsection; IsCode = isCode; Ram = ram; }
public JFileInfo(string file, RomVersion version, FileAddress rom, FileAddress ram, JSectionInfo section) { File = file; Game = version.Game.ToString(); Version = version.ToString(); Rom = rom; Ram = ram; Sections.Add(section); }