ROR__CL() public method

ROR mem8,CL
public ROR__CL ( ByteMemory target ) : void
target ByteMemory
return void
Example #1
0
	public void ROR_rmreg32_CL ()
	{
		// ROR EDX, CL
		// ROR__CL (R32.EDX)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.ROR__CL (R32.EDX);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xd3, 0xca };
		Assert.IsTrue (CompareData (memoryStream, target), "'ROR EDX, CL' failed.");
	}
Example #2
0
	public void ROR_rmreg8_CL ()
	{
		// ROR AH, CL
		// ROR__CL (R8.AH)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.ROR__CL (R8.AH);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xd2, 0xcc };
		Assert.IsTrue (CompareData (memoryStream, target), "'ROR AH, CL' failed.");
	}
Example #3
0
	public void ROR_mem16_CL ()
	{
		// ROR Word [ES:0x12345678], CL
		// ROR__CL (new WordMemory(Seg.ES, null, null, 0, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.ROR__CL (new WordMemory (Seg.ES, null, null, 0, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x26, 0x66, 0xd3, 0xd, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'ROR Word [ES:0x12345678], CL' failed.");
	}
Example #4
0
	public void ROR_mem32_CL ()
	{
		// ROR DWord [EDX + EBX*2 + 0x12345678], CL
		// ROR__CL (new DWordMemory(null, R32.EDX, R32.EBX, 1, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.ROR__CL (new DWordMemory (null, R32.EDX, R32.EBX, 1, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xd3, 0x8c, 0x5a, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'ROR DWord [EDX + EBX*2 + 0x12345678], CL' failed.");
	}
Example #5
0
	public void ROR_mem8_CL ()
	{
		// ROR Byte [EDI + EBX*1], CL
		// ROR__CL (new ByteMemory(null, R32.EDI, R32.EBX, 0))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.ROR__CL (new ByteMemory (null, R32.EDI, R32.EBX, 0));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xd2, 0xc, 0x1f };
		Assert.IsTrue (CompareData (memoryStream, target), "'ROR Byte [EDI + EBX*1], CL' failed.");
	}