Ejemplo n.º 1
0
 public JSectionInfo(string name, int subsection, bool isCode, FileAddress ram)
 {
     Name       = name;
     Subsection = subsection;
     IsCode     = isCode;
     Ram        = ram;
 }
Ejemplo n.º 2
0
 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);
 }