diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2022-01-26 15:23:18 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2022-01-26 20:58:38 +0100 |
| commit | fedc480bfac996797ef53fa638d48b4017bf2cbf (patch) | |
| tree | 447f2b35393e2dec94d42ac461e57ce8cfe902fe /miasm/core/cpu.py | |
| parent | 3f3385ef21df3d108d573bcf8d299b645eff8c91 (diff) | |
| download | focaccia-miasm-fedc480bfac996797ef53fa638d48b4017bf2cbf.tar.gz focaccia-miasm-fedc480bfac996797ef53fa638d48b4017bf2cbf.zip | |
Fix delayslot to support pickle
Diffstat (limited to 'miasm/core/cpu.py')
| -rw-r--r-- | miasm/core/cpu.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm/core/cpu.py b/miasm/core/cpu.py index fac03248..7a1cacff 100644 --- a/miasm/core/cpu.py +++ b/miasm/core/cpu.py @@ -987,6 +987,7 @@ class instruction(object): self.offset = None self.l = None self.b = None + self.delayslot = 0 def gen_args(self, args): out = ', '.join([str(x) for x in args]) |