SharpTune.Core.LookupTable.CheckData C# (CSharp) Method

CheckData() public method

public CheckData ( ) : bool
return bool
        public virtual bool CheckData()
        {
            if ( (dataAddress > 0 && dataAddress < romLimit) || (dataAddress > ramStart && dataAddress < ramLimit) )
                return false;
            return true;
        }

Usage Example

コード例 #1
0
 public static bool TrySynthesizeLut(out LookupTable lut, string name, uint da)
 {
     lut = new LookupTable(name, da);
     return(lut.CheckData());
 }
All Usage Examples Of SharpTune.Core.LookupTable::CheckData