/// <summary> /// MOV CR0/2/3/4,reg32 /// </summary> public static void MOV (CRType target, R32Type source) { }
/// <summary> /// MOV CR0/2/3/4,reg32 /// </summary> public void MOV (CRType 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", "22", "/r" })); }