Inheritance: Register
Ejemplo n.º 1
0
		/// <summary>
		/// XOR rmreg8,imm8
		/// </summary>
		public void XOR (R8Type target, Byte source)
		{
			if (target == R8.AL)
				this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "XOR_AL", "AL" + ", " + string.Format ("0x{0:x}", source), null, null, null, new UInt32 [] { source }, new string [] { "34", "ib" }));
			else {
				this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "XOR", target.ToString () + ", " + string.Format ("0x{0:x}", source), null, target, null, new UInt32 [] { source }, new string [] { "80", "/6", "ib" }));
			}
		}
Ejemplo n.º 2
0
		/// <summary>
		/// SUB mem8,reg8
		/// </summary>
		public static void SUB (ByteMemory target, R8Type source)
		{
		}
Ejemplo n.º 3
0
		/// <summary>
		/// SUB reg8,mem8
		/// </summary>
		public static void SUB (R8Type target, ByteMemory source)
		{
		}
Ejemplo n.º 4
0
		/// <summary>
		/// SETNLE rmreg8
		/// </summary>
		public static void SETNLE (R8Type target)
		{
		}
Ejemplo n.º 5
0
		/// <summary>
		/// SHR rmreg8,CL
		/// </summary>
		public static void SHR__CL (R8Type target)
		{
		}
Ejemplo n.º 6
0
		/// <summary>
		/// NOT rmreg8
		/// </summary>
		public static void NOT (R8Type target)
		{
		}
Ejemplo n.º 7
0
		/// <summary>
		/// ROL rmreg8,imm8
		/// </summary>
		public static void ROL (R8Type target, Byte source)
		{
		}
Ejemplo n.º 8
0
		/// <summary>
		/// CMPXCHG rmreg8,reg8
		/// </summary>
		public static void CMPXCHG (R8Type target, R8Type source)
		{
		}
Ejemplo n.º 9
0
		/// <summary>
		/// DEC rmreg8
		/// </summary>
		public static void DEC (R8Type target)
		{
		}
Ejemplo n.º 10
0
		/// <summary>
		/// CMPXCHG mem8,reg8
		/// </summary>
		public static void CMPXCHG (ByteMemory target, R8Type source)
		{
		}
Ejemplo n.º 11
0
		/// <summary>
		/// CMPXCHG mem8,reg8
		/// </summary>
		public unsafe static void CMPXCHG (byte* target, R8Type source)
		{
		}
Ejemplo n.º 12
0
		/// <summary>
		/// CMP rmreg8,imm8
		/// </summary>
		public static void CMP (R8Type target, Byte source)
		{
		}
Ejemplo n.º 13
0
		/// <summary>
		/// XOR rmreg8,reg8
		/// </summary>
		public static void XOR (R8Type target, R8Type source)
		{
		}
Ejemplo n.º 14
0
		/// <summary>
		/// TEST rmreg8,imm8
		/// </summary>
		public static void TEST (R8Type target, Byte source)
		{
		}
Ejemplo n.º 15
0
		/// <summary>
		/// MUL rmreg8
		/// </summary>
		public static void MUL (R8Type target)
		{
		}
Ejemplo n.º 16
0
		/// <summary>
		/// ADD rmreg8,reg8
		/// </summary>
		public static void ADD (R8Type target, R8Type source)
		{
		}
Ejemplo n.º 17
0
		/// <summary>
		/// NEG rmreg8
		/// </summary>
		public static void NEG (R8Type target)
		{
		}
Ejemplo n.º 18
0
		/// <summary>
		/// IDIV rmreg8
		/// </summary>
		public static void IDIV (R8Type target)
		{
		}
Ejemplo n.º 19
0
		/// <summary>
		/// ROL rmreg8,CL
		/// </summary>
		public static void ROL__CL (R8Type target)
		{
		}
Ejemplo n.º 20
0
		/// <summary>
		/// INC rmreg8
		/// </summary>
		public static void INC (R8Type target)
		{
		}
Ejemplo n.º 21
0
		/// <summary>
		/// SBB rmreg8,reg8
		/// </summary>
		public static void SBB (R8Type target, R8Type source)
		{
		}
Ejemplo n.º 22
0
		/// <summary>
		/// AND rmreg8,imm8
		/// </summary>
		public static void AND (R8Type target, Byte source)
		{
		}
Ejemplo n.º 23
0
		/// <summary>
		/// SETZ rmreg8
		/// </summary>
		public static void SETZ (R8Type target)
		{
		}
Ejemplo n.º 24
0
		/// <summary>
		/// MOV rmreg8,reg8
		/// </summary>
		public static void MOV (R8Type target, R8Type source)
		{
		}
Ejemplo n.º 25
0
		/// <summary>
		/// SHR rmreg8,imm8
		/// </summary>
		public static void SHR (R8Type target, Byte source)
		{
		}
Ejemplo n.º 26
0
		/// <summary>
		/// MOVSX reg16,rmreg8
		/// </summary>
		public static void MOVSX (R16Type target, R8Type source)
		{
		}
Ejemplo n.º 27
0
		/// <summary>
		/// SUB mem8,reg8
		/// </summary>
		public unsafe static void SUB (byte* target, R8Type source)
		{
		}
Ejemplo n.º 28
0
		/// <summary>
		/// MOVZX reg32,rmreg8
		/// </summary>
		public static void MOVZX (R32Type target, R8Type source)
		{
		}
Ejemplo n.º 29
0
		/// <summary>
		/// SUB reg8,mem8
		/// </summary>
		public unsafe static void SUB (R8Type target, byte* source)
		{
		}
Ejemplo n.º 30
0
		/// <summary>
		/// ADC reg8,mem8
		/// </summary>
		public void ADC (R8Type target, ByteMemory source)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "ADC", target.ToString () + ", " + source.ToString (), source, null, target, null, new string [] { "12", "/r" }));
		}