Skip to content

Commit

Permalink
vfalu: fix condition of result selection for vmv.v.v instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
sinceforYy committed Jan 30, 2024
1 parent c0c4787 commit 12b3a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/yunsuan/vector/VectorALU/VAluBundles.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class VAluOpcode extends Bundle{
def isIntFixp = op < vredsum || op === vmvsx
def isVmvsx = op === vmvsx
def isVmvxs = op === vmvxs
def isVmergeMove = op === vmerge || op === vmvsx
def isVmergeMove = op === vmerge || op === vmv || op === vmvsx
// IMac opcode:
def op3b = op(2, 0)
def highHalf = op3b === 1.U
Expand Down

0 comments on commit 12b3a16

Please sign in to comment.