mirror of
https://github.com/yuzu-mirror/unicorn.git
synced 2026-04-04 14:07:42 +00:00
Aarch64 add thread registers (#834)
* add thread registers to AArch64 * update bindings to add AArch64 thread registers * fix indentation for register read/write switch-case in unicorn_aarch64.c
This commit is contained in:
parent
476553223b
commit
014ccfb94a
7 changed files with 76 additions and 28 deletions
|
|
@ -266,7 +266,12 @@ UC_ARM64_REG_V31 = 259
|
|||
# pseudo registers
|
||||
UC_ARM64_REG_PC = 260
|
||||
UC_ARM64_REG_CPACR_EL1 = 261
|
||||
UC_ARM64_REG_ENDING = 262
|
||||
|
||||
# thread registers
|
||||
UC_ARM64_REG_TPIDR_EL0 = 262
|
||||
UC_ARM64_REG_TPIDRRO_EL0 = 263
|
||||
UC_ARM64_REG_TPIDR_EL1 = 264
|
||||
UC_ARM64_REG_ENDING = 265
|
||||
|
||||
# alias registers
|
||||
UC_ARM64_REG_IP1 = 215
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue