Beispiel #1
0
		/// <summary>
		/// Add the calli instruction
		/// </summary>
		/// <param name="sig">the signature for the calli</param>
		public void calli(CalliSig sig) 
		{
			AddToBuffer(new SigInstr(0x29,sig));
		}
Beispiel #2
0
 /// <summary>
 /// Add the calli instruction
 /// </summary>
 /// <param name="sig">the signature for the calli</param>
 public void calli(CalliSig sig)
 {
     AddToBuffer(new SigInstr(0x29, sig));
 }
Beispiel #3
0
		internal SigInstr(int inst, CalliSig sig) : base(inst) 
		{
			signature = sig;
			size += 4;
		}
Beispiel #4
0
 internal SigInstr(int inst, CalliSig sig) : base(inst)
 {
     signature = sig;
     size     += 4;
 }