From: lkcl Date: Fri, 25 Dec 2020 22:17:08 +0000 (+0000) Subject: (no commit message) X-Git-Tag: convert-csv-opcode-to-binary~876 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=933381c8c41bfd381d3379f751a103e7bbd8d0e8;p=libreriscv.git --- diff --git a/openpower/sv/bitmanip.mdwn b/openpower/sv/bitmanip.mdwn index 01c0adda8..4b75b5d05 100644 --- a/openpower/sv/bitmanip.mdwn +++ b/openpower/sv/bitmanip.mdwn @@ -72,6 +72,7 @@ return x; # xperm based on RV bitmanip + ``` uint_xlen_t xperm(uint_xlen_t rs1, uint_xlen_t rs2, int sz_log2) { uint_xlen_t r = 0; } @@ -83,6 +84,7 @@ uint_xlen_t xperm_n (uint_xlen_t rs1, uint_xlen_t rs2) { return xperm(rs1, rs2, # gorc based on RV bitmanip + ``` uint32_t gorc32(uint32_t rs1, uint32_t rs2) { uint32_t x = rs1; }