Inheritance: Register
示例#1
0
文件: Asm.cs 项目: sharpos/SharpOS
		/// <summary>
		/// MOV TR3/4/5/6/7,reg32
		/// </summary>
		public static void MOV (TRType target, R32Type source)
		{
		}
示例#2
0
		/// <summary>
		/// MOV TR3/4/5/6/7,reg32
		/// </summary>
		public void MOV (TRType 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", "26", "/r" }));
		}