mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 11:58:20 +00:00
12 lines
297 B
Python
Executable file
12 lines
297 B
Python
Executable file
#!/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, 0x2005)
|