diff options
| author | serpilliere <devnull@localhost> | 2014-08-22 10:40:01 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-08-22 10:40:01 +0200 |
| commit | dad135e2931773e2ae12e4096258a4c6d7596ffb (patch) | |
| tree | b9e9a030d8d6ac676afecdd5b2b97ae81aa8d7d8 /miasm2/arch/arm/sem.py | |
| parent | 45b8751e9e3c2441e3cc8d0d10ca7ab58d21380a (diff) | |
| download | miasm-dad135e2931773e2ae12e4096258a4c6d7596ffb.tar.gz miasm-dad135e2931773e2ae12e4096258a4c6d7596ffb.zip | |
Arm: add exception_flags; fix svc sem
Diffstat (limited to 'miasm2/arch/arm/sem.py')
| -rw-r--r-- | miasm2/arch/arm/sem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/arm/sem.py b/miasm2/arch/arm/sem.py index 498017c9..c2ce1b55 100644 --- a/miasm2/arch/arm/sem.py +++ b/miasm2/arch/arm/sem.py @@ -701,7 +701,7 @@ def stmdb(ir, instr, a, b): def svc(ir, instr, a): # XXX TODO implement e = [ - ExprAff(ExprId('vmmngr.exception_flags'), ExprInt32(EXCEPT_PRIV_INSN))] + ExprAff(ExprId(exception_flags), ExprInt32(EXCEPT_PRIV_INSN))] return None, e |