From: lkcl Date: Thu, 20 Apr 2023 15:40:43 +0000 (+0100) Subject: (no commit message) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=29f0d268ce10ddeff3fd5abf10c0322f7d700aac;p=libreriscv.git --- diff --git a/openpower/sv/av_opcodes.mdwn b/openpower/sv/av_opcodes.mdwn index 2c0599306..059315616 100644 --- a/openpower/sv/av_opcodes.mdwn +++ b/openpower/sv/av_opcodes.mdwn @@ -29,10 +29,10 @@ In-advance, the summary of base scalar operations that need to be added is: | average-add. | result = (src1 + src2 + 1) >> 1 | | abs-diff | result = abs (src1-src2) | | abs-accumulate| result += abs (src1-src2) | -| (un)signed min| result = (src1 < src2) ? src1 : src2 use bitmanip | -| (un)signed max| result = (src1 > src2) ? src1 : src2 use bitmanip | +| (un)signed min| result = (src1 < src2) ? src1 : src2 | +| (un)signed max| result = (src1 > src2) ? src1 : src2 | | bitwise sel | (a ? b : c) - use [[sv/bitmanip]] ternary | -| int/fp move | covered by [[sv/int_fp_mv]] | +| int/fp move | covered by REMAP and Pack/Unpack | Implemented at the [[openpower/isa/av]] pseudocode page.