about summary refs log tree commit diff stats
path: root/example/expression/expr_grapher.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2018-02-15 23:28:36 +0100
committerGitHub <noreply@github.com>2018-02-15 23:28:36 +0100
commite933c0c31742ddb9dcfd9b46d93fe2a47553af5e (patch)
treea5b6ac1d9f3ecf6378d2ae33661b0433f5736dc6 /example/expression/expr_grapher.py
parent092d0bfaac18ffe683a8ef3a1dedc5dba80e7688 (diff)
parent2420df074cd2f3bb8b1e343a5bce6b83fffa9d80 (diff)
downloadfocaccia-miasm-e933c0c31742ddb9dcfd9b46d93fe2a47553af5e.tar.gz
focaccia-miasm-e933c0c31742ddb9dcfd9b46d93fe2a47553af5e.zip
Merge pull request #683 from commial/refactor/remove-default-exprmem-size
Refactor/remove default exprmem size
Diffstat (limited to 'example/expression/expr_grapher.py')
-rw-r--r--example/expression/expr_grapher.py2
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)