2

What is the asmjit equivalent of mov eax,[ecx+0CC]?

This is close: c.mov_ptr(x86::eax, x86::ptr(x86::ecx, 0x0CC)); but the arguments are wrong.

Any ideas?

Christian Stewart
  • 15,217
  • 20
  • 82
  • 139

1 Answers1

1

The answer is:

a.mov(x86::eax, x86::ptr(x86::ecx, 0x0CC));

Christian Stewart
  • 15,217
  • 20
  • 82
  • 139