Ejemplo n.º 1
0
 public static int MarkArchitecture(this ISnesApi <IData> @this, int offset, Architecture arch, int count) =>
 @this.Data.Mark(i => @this.Data.SetArchitecture(i, arch), offset, count);
Ejemplo n.º 2
0
 public static int MarkMFlag(this ISnesApi <IData> @this, int offset, bool m, int count) =>
 @this.Data.Mark(i => @this.SetMFlag(i, m), offset, count);
Ejemplo n.º 3
0
 public static int MarkXFlag(this ISnesApi <IData> @this, int offset, bool x, int count) =>
 @this.Data.Mark(i => @this.SetXFlag(i, x), offset, count);
Ejemplo n.º 4
0
 public static int MarkDirectPage(this ISnesApi <IData> @this, int offset, int dp, int count) =>
 @this.Data.Mark(i => @this.SetDirectPage(i, dp), offset, count);
Ejemplo n.º 5
0
 public static int MarkDataBank(this ISnesApi <IData> @this, int offset, int db, int count) =>
 @this.Data.Mark(i => @this.SetDataBank(i, db), offset, count);
Ejemplo n.º 6
0
 public static int MarkTypeFlag(this ISnesApi <IData> @this, int offset, FlagType type, int count) =>
 @this.Data.Mark(i => @this.SetFlag(i, type), offset, count);