mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 12:48:16 +00:00
8 lines
164 B
Python
Executable file
8 lines
164 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import unicorn
|
|
|
|
u = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
|
|
u.mem_map(0x2000, 0)
|
|
u.mem_map(0x4000, 1)
|
|
print "I am never reached"
|