diff options
| author | Ajax <commial@gmail.com> | 2018-02-15 14:16:08 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-02-15 15:45:24 +0100 |
| commit | 2420df074cd2f3bb8b1e343a5bce6b83fffa9d80 (patch) | |
| tree | b97a1b5d0dbd6b686b12a0f01e32df5e63b07725 /example/expression/expr_grapher.py | |
| parent | e71a3def7f936f5738d6988755d853601e84d184 (diff) | |
| download | focaccia-miasm-2420df074cd2f3bb8b1e343a5bce6b83fffa9d80.tar.gz focaccia-miasm-2420df074cd2f3bb8b1e343a5bce6b83fffa9d80.zip | |
Remove the default size of ExprMem expressions
Diffstat (limited to 'example/expression/expr_grapher.py')
| -rw-r--r-- | example/expression/expr_grapher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/expr_grapher.py b/example/expression/expr_grapher.py index 9bf6cd84..e0562852 100644 --- a/example/expression/expr_grapher.py +++ b/example/expression/expr_grapher.py @@ -6,7 +6,7 @@ a = ExprId("A", 32) b = ExprId("B", 32) c = ExprId("C", 32) d = ExprId("D", 32) -m = ExprMem(a + b + c + a) +m = ExprMem(a + b + c + a, 32) e1 = ExprCompose(a + b - (c * a) / m | b, a + m) e2 = ExprInt(15, 64) |