Inheritance: Register
Ejemplo n.º 1
0
		/// <summary>
		/// MOV DR0/1/2/3/6/7,reg32
		/// </summary>
		public static void MOV (DRType target, R32Type source)
		{
		}
Ejemplo n.º 2
0
		/// <summary>
		/// MOV DR0/1/2/3/6/7,reg32
		/// </summary>
		public void MOV (DRType target, R32Type source)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "MOV", target.ToString () + ", " + source.ToString (), null, source, target, null, new string [] { "0F", "23", "/r" }));
		}