From: lkcl Date: Thu, 23 Jun 2022 14:27:07 +0000 (+0100) Subject: (no commit message) X-Git-Tag: opf_rfc_ls005_v1~1565 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a7a476651d247cb1b4dd4873263998f6acbc1b6;p=libreriscv.git --- diff --git a/openpower/sv/mv.swizzle.mdwn b/openpower/sv/mv.swizzle.mdwn index d2f83f0b1..0be17eb1c 100644 --- a/openpower/sv/mv.swizzle.mdwn +++ b/openpower/sv/mv.swizzle.mdwn @@ -312,7 +312,7 @@ if VERTICAL_FIRST: if PACK_en and UNPACK_en: num_runs = 1 # both are outer loops for substep in num_runs: - (src_idx, offs) = yield from index_src(UNPACK_en) - dst_idx = yield from index_dst(PACK_en) + (src_idx, offs) = yield from index_src(PACK_en) + dst_idx = yield from index_dst(UNPACK_en) move_operation(RT+dst_idx, RA+src_idx+offs) ```