Merge pull request #92 from lunixbochs/master

add regression test for #91
This commit is contained in:
Nguyen Anh Quynh 2015-09-01 14:35:28 +08:00
commit 9dbd674a04
1 changed files with 12 additions and 0 deletions

12
regress/pshufb.py Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/python
# By Ryan Hileman, issue #91
# Invalid instruction = test failed
from unicorn import *
from unicorn.x86_const import *
uc = Uc(UC_ARCH_X86, UC_MODE_64)
uc.mem_map(0x2000, 0x1000)
# pshufb xmm0, xmm1
uc.mem_write(0x2000, '660f3800c1'.decode('hex'))
uc.emu_start(0x2000, 0)