/// <summary> /// Attempts to load the 136029-206.bin ROM /// </summary> /// <param name="rom"></param> /// <returns></returns> static public bool TryLoad(out Rom206 rom) { rom = null; try { rom = new Rom206(); return(true); } catch { Log.LogMessage("Failed to load 136029-206.bin"); return(false); } }
public Rom206Object(Rom206 rom, int address) { Rom = rom; Address = (UInt16)address; }