From: Dmitry Selyutin Date: Tue, 16 Aug 2022 18:29:57 +0000 (+0300) Subject: pysvp64dis: fix prefix/suffix properties X-Git-Tag: sv_maxu_works-initial~65 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b4fc1f7611cdb5653fa31bbd559b9a7e7096be2;p=openpower-isa.git pysvp64dis: fix prefix/suffix properties --- diff --git a/src/openpower/sv/trans/pysvp64dis.py b/src/openpower/sv/trans/pysvp64dis.py index ddb24a15..44adf332 100644 --- a/src/openpower/sv/trans/pysvp64dis.py +++ b/src/openpower/sv/trans/pysvp64dis.py @@ -45,11 +45,11 @@ class PrefixedInstruction(Instruction): @property def prefix(self): - return self[32:64] + return self[0:32] @property def suffix(self): - return self[0:32] + return self[32:64] def load(ifile, byteorder, **_):