diff options
| author | ajax <devnull@localhost> | 2014-06-16 18:52:37 +0200 |
|---|---|---|
| committer | ajax <devnull@localhost> | 2014-06-16 18:52:37 +0200 |
| commit | 2e69973e85db816ad0357c879ceb5643c05f50e0 (patch) | |
| tree | f7cadfb2f7ec54a821bae1a70e24bcd56d7c11d5 /miasm2/arch/arm/regs.py | |
| parent | 4d63f0d1a6280bd03e3061744e352cc81636f112 (diff) | |
| download | miasm-2e69973e85db816ad0357c879ceb5643c05f50e0.tar.gz miasm-2e69973e85db816ad0357c879ceb5643c05f50e0.zip | |
Archs: Introduce "all_regs_id_no_alias", a list of all main registers without their aliases
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/arm/regs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/miasm2/arch/arm/regs.py b/miasm2/arch/arm/regs.py index 6ddac2ef..2787605a 100644 --- a/miasm2/arch/arm/regs.py +++ b/miasm2/arch/arm/regs.py @@ -66,6 +66,8 @@ all_regs_ids = [ zf, nf, of, cf ] +all_regs_ids_no_alias = all_regs_ids + all_regs_ids_byname = dict([(x.name, x) for x in all_regs_ids]) all_regs_ids_init = [R0_init, R1_init, R2_init, R3_init, |