Exemple #1
0
 public Xref(int offset, bool isSymbolic, XrefType type,
             Asm65.OpDef.MemoryEffect accType, int adjustment)
 {
     Offset     = offset;
     IsSymbolic = isSymbolic;
     Type       = type;
     AccType    = accType;
     Adjustment = adjustment;
 }
Exemple #2
0
 public Xref(int offset, bool isByName, XrefType type,
             Asm65.OpDef.MemoryEffect accType, bool isIndexedAccess, int adjustment)
 {
     Offset          = offset;
     IsByName        = isByName;
     Type            = type;
     AccType         = accType;
     IsIndexedAccess = isIndexedAccess;
     Adjustment      = adjustment;
 }