diff options
Diffstat (limited to 'test/arch/msp430/sem.py')
| -rwxr-xr-x | 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 4b5b0c7d..3b2c2f2e 100755 --- a/test/arch/msp430/sem.py +++ b/test/arch/msp430/sem.py @@ -27,7 +27,7 @@ def compute(asm, inputstate={}, debug=False): instr = mn.dis(code, mode) instr.offset = inputstate.get(PC, 0) interm.add_instr(instr) - symexec.emul_ir_blocks(instr.offset) + symexec.run_at(instr.offset) if debug: for k, v in symexec.symbols.items(): if regs_init.get(k, None) != v: |