diff options
| author | serpilliere <devnull@localhost> | 2012-06-21 14:39:26 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-06-21 14:39:26 +0200 |
| commit | 3af3f8e0f4ad616c9077fec6efa58cb6c7240812 (patch) | |
| tree | 80223b63273dc9c54ffddddc0052140b7529163d /example/expression/manip_expression6.py | |
| parent | 50c79519af9c768eb1cddc02792b5c68a433bd4c (diff) | |
| download | miasm-3af3f8e0f4ad616c9077fec6efa58cb6c7240812.tar.gz miasm-3af3f8e0f4ad616c9077fec6efa58cb6c7240812.zip | |
tools: add modint; remove numpy dependency
Diffstat (limited to 'example/expression/manip_expression6.py')
| -rw-r--r-- | example/expression/manip_expression6.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/expression/manip_expression6.py b/example/expression/manip_expression6.py index 65d43f04..024de0f4 100644 --- a/example/expression/manip_expression6.py +++ b/example/expression/manip_expression6.py @@ -101,6 +101,8 @@ to_test = [(ExprInt32(5)+c+a+b-a+ExprInt32(1)-ExprInt32(5)), ExprCond(ExprInt32(1), a, b), ExprCond(ExprInt32(0), b, a), + ExprInt32(0x80000000)[31:32], + ] |