ToString() public method

Returns a that represents the current .
public ToString ( ) : string
return string
Esempio n. 1
0
		/// <summary>
		/// PREFETCHT2 m8
		/// </summary>
		public void PREFETCHT2 (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "PREFETCHT2", target.ToString (), target, null, null, null, new string [] { "0F", "18", "/3" }));
		}
Esempio n. 2
0
		/// <summary>
		/// SIDT mem
		/// </summary>
		public void SIDT (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "SIDT", target.ToString (), target, null, null, null, new string [] { "0F", "01", "/1" }));
		}
Esempio n. 3
0
		/// <summary>
		/// LSS reg16,mem
		/// </summary>
		public void LSS (R16Type target, Memory source)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "LSS", target.ToString () + ", " + source.ToString (), source, null, target, null, new string [] { "o16", "0F", "B2", "/r" }));
		}
Esempio n. 4
0
		/// <summary>
		/// BOUND reg32,mem
		/// </summary>
		public void BOUND (R32Type target, Memory source)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "BOUND", target.ToString () + ", " + source.ToString (), source, null, target, null, new string [] { "o32", "62", "/r" }));
		}
Esempio n. 5
0
		/// <summary>
		/// INVLPG mem
		/// </summary>
		public void INVLPG (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "INVLPG", target.ToString (), target, null, null, null, new string [] { "0F", "01", "/7" }));
		}
Esempio n. 6
0
		/// <summary>
		/// JMP FAR mem
		/// </summary>
		public void JMP_FAR (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "JMP_FAR", target.ToString (), target, null, null, null, new string [] { "o16", "FF", "/5" }));
		}
Esempio n. 7
0
		/// <summary>
		/// FXSAVE memory
		/// </summary>
		public void FXSAVE (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "FXSAVE", target.ToString (), target, null, null, null, new string [] { "0F", "AE", "/0" }));
		}
Esempio n. 8
0
		/// <summary>
		/// FSTENV mem
		/// </summary>
		public void FSTENV (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "FSTENV", target.ToString (), target, null, null, null, new string [] { "9B", "D9", "/6" }));
		}
Esempio n. 9
0
		/// <summary>
		/// FRSTOR mem
		/// </summary>
		public void FRSTOR (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "FRSTOR", target.ToString (), target, null, null, null, new string [] { "DD", "/4" }));
		}
Esempio n. 10
0
		/// <summary>
		/// CMPXCHG8B mem
		/// </summary>
		public void CMPXCHG8B (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "CMPXCHG8B", target.ToString (), target, null, null, null, new string [] { "0F", "C7", "/1" }));
		}
Esempio n. 11
0
		/// <summary>
		/// CLFLUSH mem
		/// </summary>
		public void CLFLUSH (Memory target)
		{
			this.instructions.Add (new Instruction (true, string.Empty, string.Empty, "CLFLUSH", target.ToString (), target, null, null, null, new string [] { "0F", "AE", "/7" }));
		}