mirror of
https://github.com/yuzu-mirror/unicorn.git
synced 2026-04-04 22:17:46 +00:00
Merge branch 'master' into rhelmot-feat/setup_stuff
This commit is contained in:
commit
4188c4cbca
5 changed files with 7 additions and 5 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue