From 30ba5bf0a7b68462cddd01201b50cb881d76e746 Mon Sep 17 00:00:00 2001 From: Nikita Karetnikov Date: Fri, 17 May 2019 20:10:14 +0300 Subject: [PATCH] aarch64: do not use the 'procs' argument --- examples/script/aarch64/hello42.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/script/aarch64/hello42.py b/examples/script/aarch64/hello42.py index 1bd87ac37..559e8fe28 100755 --- a/examples/script/aarch64/hello42.py +++ b/examples/script/aarch64/hello42.py @@ -45,6 +45,6 @@ def execute_instruction(self, insn, msg): m.subscribe('did_execute_instruction', lambda self, state, last_pc, pc, insn: execute_instruction(self, insn, 'done')) - m.run(procs=1) + m.run() print(f"Executed {m.context['count']} instructions")