mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 21:48:26 +00:00
12 lines
234 B
Python
12 lines
234 B
Python
|
#!/usr/bin/python
|
||
|
# From issue #1 of Ryan Hileman
|
||
|
|
||
|
from unicorn import *
|
||
|
|
||
|
CODE = b"\x90\x91\x92"
|
||
|
|
||
|
mu = Uc(UC_ARCH_X86, UC_MODE_64)
|
||
|
mu.mem_map(0x100000, 4 * 1024)
|
||
|
mu.mem_write(0x100000, CODE)
|
||
|
mu.emu_start(0x100000, 0x1000 + len(CODE))
|