Fix #638 for python sample too

This commit is contained in:
esanfelix 2016-09-20 10:29:21 +02:00
parent fce82b9532
commit 7d99b598f1
1 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,8 @@ def test_thumb():
mu.hook_add(UC_HOOK_CODE, hook_code)
# emulate machine code in infinite time
mu.emu_start(ADDRESS, ADDRESS + len(THUMB_CODE))
# Note we start at ADDRESS | 1 to indicate THUMB mode.
mu.emu_start(ADDRESS | 1, ADDRESS + len(THUMB_CODE))
# now print out some registers
print(">>> Emulation done. Below is the CPU context")