Skip to content

Commit c01471a

Browse files
committed
Add missing ARM regs
1 parent 8e9b21e commit c01471a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

qiling/arch/arm.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ def uc(self) -> Uc:
4141

4242
@cached_property
4343
def regs(self) -> QlRegisterManager:
44-
regs_map = arm_const.reg_map
44+
regs_map = dict(
45+
**arm_const.reg_map,
46+
**arm_const.reg_vfp
47+
)
48+
4549
pc_reg = 'pc'
4650
sp_reg = 'sp'
4751

0 commit comments

Comments
 (0)