diff options
| author | Florent <florent.monjalet@gmail.com> | 2015-10-29 15:47:55 +0100 |
|---|---|---|
| committer | Florent <florent.monjalet@gmail.com> | 2015-10-29 15:47:55 +0100 |
| commit | fefb609f7ed8267815e3ab4b7467a8fada7040b8 (patch) | |
| tree | 03b82bcf93d36fa36f7cdee28b36eba3c7d59d40 /test/arch/msp430/sem.py | |
| parent | 967be0c4e0f8d32f6bf3e8aa9f85d0abc9ab95da (diff) | |
| parent | c4e4273c2d4e459eddc96c8ef0af0e5eff9c3f7e (diff) | |
| download | miasm-fefb609f7ed8267815e3ab4b7467a8fada7040b8.tar.gz miasm-fefb609f7ed8267815e3ab4b7467a8fada7040b8.zip | |
Merge pull request #250 from serpilliere/ExprInt_api
Expression: normalize ExprInt api
Diffstat (limited to 'test/arch/msp430/sem.py')
| -rw-r--r-- | test/arch/msp430/sem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/arch/msp430/sem.py b/test/arch/msp430/sem.py index 5340a4d2..2488d633 100644 --- a/test/arch/msp430/sem.py +++ b/test/arch/msp430/sem.py @@ -14,7 +14,7 @@ logging.getLogger('cpuhelper').setLevel(logging.ERROR) EXCLUDE_REGS = set([res, ir_arch().IRDst]) def M(addr): - return ExprMem(ExprInt_fromsize(16, addr), 16) + return ExprMem(ExprInt(addr, 16), 16) def compute(asm, inputstate={}, debug=False): |