From: Cesar Strauss Date: Fri, 2 Apr 2021 22:20:26 +0000 (-0300) Subject: Fix typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=86ebedd0f5f65defdc2217a7c834c2f0c2ec108d;p=soc.git Fix typo --- diff --git a/src/soc/decoder/isa/caller.py b/src/soc/decoder/isa/caller.py index b52f88c5..95dc0f47 100644 --- a/src/soc/decoder/isa/caller.py +++ b/src/soc/decoder/isa/caller.py @@ -1126,7 +1126,7 @@ class ISACaller: vl = self.svstate.vl.asint(msb0=True) mvl = self.svstate.maxvl.asint(msb0=True) srcstep = self.svstate.srcstep.asint(msb0=True) - dststep = self.svstate.srcstep.asint(msb0=True) + dststep = self.svstate.dststep.asint(msb0=True) sv_ptype = yield self.dec2.dec.op.SV_Ptype no_out_vec = not (yield self.dec2.no_out_vec) no_in_vec = not (yield self.dec2.no_in_vec)