From 275b8d25aacd639a0512f54e99f9fa247ecb8bb3 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Fri, 9 Feb 2018 18:13:24 +0100 Subject: Expression: no default size for ExprId --- example/expression/expr_grapher.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'example/expression/expr_grapher.py') diff --git a/example/expression/expr_grapher.py b/example/expression/expr_grapher.py index 0de2142b..9bf6cd84 100644 --- a/example/expression/expr_grapher.py +++ b/example/expression/expr_grapher.py @@ -2,10 +2,10 @@ from miasm2.expression.expression import * print "Simple Expression grapher demo" -a = ExprId("A") -b = ExprId("B") -c = ExprId("C") -d = ExprId("D") +a = ExprId("A", 32) +b = ExprId("B", 32) +c = ExprId("C", 32) +d = ExprId("D", 32) m = ExprMem(a + b + c + a) e1 = ExprCompose(a + b - (c * a) / m | b, a + m) -- cgit 1.4.1