Skip to content
Snippets Groups Projects
Commit 72160df6 authored by Nguyen Anh Quynh's avatar Nguyen Anh Quynh
Browse files

regress: add x64_rip_relative.py

parent d73227ee
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python
# Test RIP relative instruction
# Github issue: #9
# Author: Nguyen Anh Quynh
from keystone import *
import regress
class TestX86(regress.RegressTest):
def runTest(self):
# Initialize Keystone engine
ks = Ks(KS_ARCH_X86, KS_MODE_64)
# Assemble to get back insn encoding & statement count
encoding, count = ks.asm(b"MOV QWORD PTR [RIP+0xF55AF], 0xFF")
# Assert the result
self.assertEqual(encoding, [ 0x48, 0xc7, 0x05, 0xaf, 0x55, 0x0f, 0x00, 0xff, 0x00, 0x00, 0x00 ])
if __name__ == '__main__':
regress.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment