Skip to content

Commit

Permalink
Fix fmaxm.d definition
Browse files Browse the repository at this point in the history
Likely a cut-and-paste error, the definition for fmaxm.d uses the fmaxm.s
mnemonic, which is already used earlier in the same file.
  • Loading branch information
ThinkOpenly committed Oct 10, 2023
1 parent dbea780 commit daa206b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/riscv_insts_zfa.sail
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ mapping clause encdec = RISCV_FMAXM_D(rs2, rs1, rd) if haveDExt() & haveZfa(
<-> 0b001_0101 @ rs2 @ rs1 @ 0b011 @ rd @ 0b101_0011 if haveDExt() & haveZfa()

mapping clause assembly = RISCV_FMAXM_D(rs2, rs1, rd)
<-> "fmaxm.s" ^ spc() ^ freg_name(rd)
<-> "fmaxm.d" ^ spc() ^ freg_name(rd)
^ spc() ^ freg_name(rs1)
^ spc() ^ freg_name(rs2)

Expand Down

0 comments on commit daa206b

Please sign in to comment.