Skip to content

Commit fd99207

Browse files
authored
fix: VAESDF assembly needs a spc(), not sep() (#998)
Between the mnemonic and the operands, `sep()` (comma) was used instead of `spc()` (space). Fix that.
1 parent b51b9b4 commit fd99207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model/riscv_insts_zvkned.sail

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ mapping vaesdf_mnemonic : zvk_vaesdf_funct6 <-> string = {
5858
}
5959

6060
mapping clause assembly = VAESDF(funct6, vs2, vd)
61-
<-> vaesdf_mnemonic(funct6) ^ sep() ^ vreg_name(vd) ^ sep() ^ vreg_name(vs2)
61+
<-> vaesdf_mnemonic(funct6) ^ spc() ^ vreg_name(vd) ^ sep() ^ vreg_name(vs2)
6262

6363
union clause ast = VAESDM : (zvk_vaesdm_funct6, vregidx, vregidx)
6464

0 commit comments

Comments
 (0)