diff options
| author | serpilliere <devnull@localhost> | 2012-07-31 12:57:04 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-07-31 12:57:04 +0200 |
| commit | 753e230cec8b4070ce6ffcdfadc5daa05abb0f5d (patch) | |
| tree | 71ec3d74e9574a4f2f2f7eba507ce1d5a5ac6d64 /example/expression/manip_expression2.py | |
| parent | a95d1b7bd1d8e8ca349c45fb83987a4baaf99025 (diff) | |
| download | miasm-753e230cec8b4070ce6ffcdfadc5daa05abb0f5d.tar.gz miasm-753e230cec8b4070ce6ffcdfadc5daa05abb0f5d.zip | |
eval_abs: fix mem lookup; ia32_sem: gen ia32info
Diffstat (limited to 'example/expression/manip_expression2.py')
| -rw-r--r-- | example/expression/manip_expression2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/manip_expression2.py b/example/expression/manip_expression2.py index cbdd8f9d..e8b73a92 100644 --- a/example/expression/manip_expression2.py +++ b/example/expression/manip_expression2.py @@ -16,7 +16,7 @@ def get_rw(exprs): a = ExprId('eax') b = ExprMem(ExprId('ebx'), 32) -exprs = add(('u32', 'u32'), a, b) +exprs = add(ia32info(), a, b) o_r, o_w = get_rw(exprs) # read ID print 'r:', [str(x) for x in o_r] |