Skip to content

Commit

Permalink
Fix the wdata in frfWriteBundle for fp loads (#2546)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinay-kayastha authored Jul 1, 2020
1 parent 4d95a45 commit a133d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/tile/FPU.scala
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ class FPU(cfg: FPUParams)(implicit p: Parameters) extends FPUModule()(p) {
printf("f%d p%d 0x%x\n", load_wb_tag, load_wb_tag + 32, load_wb_data)
frfWriteBundle(0).wrdst := load_wb_tag
frfWriteBundle(0).wrenf := true.B
frfWriteBundle(0).wrdata := load_wb_data
frfWriteBundle(0).wrdata := ieee(wdata)
}

val ex_rs = ex_ra.map(a => regfile(a))
Expand Down

0 comments on commit a133d51

Please sign in to comment.