From f0765c8cb9a38f9edadb2f56ff2dc50d733c0164 Mon Sep 17 00:00:00 2001 From: Linda Njau Date: Thu, 15 Aug 2024 13:23:00 +0300 Subject: [PATCH] Fix case for Zbkx instruction names --- model/riscv_insts_zbkx.sail | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model/riscv_insts_zbkx.sail b/model/riscv_insts_zbkx.sail index 08e67d927..52bfc1688 100644 --- a/model/riscv_insts_zbkx.sail +++ b/model/riscv_insts_zbkx.sail @@ -7,7 +7,7 @@ /*=======================================================================================*/ /* ****************************************************************** */ -$[name "Crossbar permutation (bytes)"] +$[name "crossbar permutation (bytes)"] union clause ast = RISCV_XPERM8 : (regidx, regidx, regidx) mapping clause encdec = RISCV_XPERM8(rs2, rs1, rd) if extension("Zbkx") @@ -31,7 +31,7 @@ function clause execute (RISCV_XPERM8(rs2, rs1, rd)) = { } /* ****************************************************************** */ -$[name "Crossbar permutation (nibbles)"] +$[name "crossbar permutation (nibbles)"] union clause ast = RISCV_XPERM4 : (regidx, regidx, regidx) mapping clause encdec = RISCV_XPERM4(rs2, rs1, rd) if extension("Zbkx")