Skip to content

Commit 052efdf

Browse files
committed
fix: vsha2ms.vv assembly is missing a sep()
1 parent d784767 commit 052efdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model/riscv_insts_zvknhab.sail

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mapping clause encdec = VSHA2MS_VV(vs2, vs1, vd)
1616
when (currentlyEnabled(Ext_Zvknha) & get_sew() == 32) | (currentlyEnabled(Ext_Zvknhb) & (get_sew() == 32 | get_sew() == 64)) & zvknhab_check_encdec(vs2, vs1, vd)
1717

1818
mapping clause assembly = VSHA2MS_VV(vs2, vs1, vd)
19-
<-> "vsha2ms.vv" ^ spc() ^ vreg_name(vd) ^ sep() ^ vreg_name(vs2) ^ vreg_name(vs1)
19+
<-> "vsha2ms.vv" ^ spc() ^ vreg_name(vd) ^ sep() ^ vreg_name(vs2) ^ sep() ^ vreg_name(vs1)
2020

2121
function clause execute (VSHA2MS_VV(vs2, vs1, vd)) = {
2222
let 'SEW = get_sew();

0 commit comments

Comments
 (0)