From: lkcl Date: Wed, 27 Apr 2022 09:36:23 +0000 (+0100) Subject: (no commit message) X-Git-Tag: opf_rfc_ls005_v1~2566 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=395d8fa68a631b5c57c18741c3010fec49f04bbd;p=libreriscv.git --- diff --git a/openpower/sv/biginteger/analysis.mdwn b/openpower/sv/biginteger/analysis.mdwn index 9cce6b8ad..63b614331 100644 --- a/openpower/sv/biginteger/analysis.mdwn +++ b/openpower/sv/biginteger/analysis.mdwn @@ -322,8 +322,7 @@ this time using subtract instead of add. ``` uint32_t carry = 0; - // this becomes the basis for sv.msubed in RS=RC Mode, - // where carry is RC + // this is just sv.madded again for (int i = 0; i <= n; i++) { uint64_t value = (uint64_t)vn[i] * (uint64_t)qhat + carry; carry = (uint32_t)(value >> 32); // upper half for next loop